home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / mac / files / dsp / dspkgctr.z / dspkgctr / gcc / reload.c < prev    next >
C/C++ Source or Header  |  1992-06-08  |  105KB  |  3,342 lines

  1. /* Search an insn for pseudo regs that must be in hard regs and are not.
  2.    Copyright (C) 1987, 1988, 1989 Free Software Foundation, Inc.
  3.  
  4.    $Id: reload.c,v 1.7 91/10/23 16:50:58 pete Exp $
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 1, or (at your option)
  11. any later version.
  12.  
  13. GNU CC is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with GNU CC; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22.  
  23. /* This file contains subroutines used only from the file reload1.c.
  24.    It knows how to scan one insn for operands and values
  25.    that need to be copied into registers to make valid code.
  26.    It also finds other operands and values which are valid
  27.    but for which equivalent values in registers exist and
  28.    ought to be used instead.
  29.  
  30.    Before processing the first insn of the function, call `init_reload'.
  31.  
  32.    To scan an insn, call `find_reloads'.  This does two things:
  33.    1. sets up tables describing which values must be reloaded
  34.    for this insn, and what kind of hard regs they must be reloaded into;
  35.    2. optionally record the locations where those values appear in
  36.    the data, so they can be replaced properly later.
  37.    This is done only if the second arg to `find_reloads' is nonzero.
  38.  
  39.    The third arg to `find_reloads' specifies the value of `indirect_ok'.
  40.  
  41.    Then you must choose the hard regs to reload those pseudo regs into,
  42.    and generate appropriate load insns before this insn and perhaps
  43.    also store insns after this insn.  Set up the array `reload_reg_rtx'
  44.    to contain the REG rtx's for the registers you used.  In some
  45.    cases `find_reloads' will return a nonzero value in `reload_reg_rtx'
  46.    for certain reloads.  Then that tells you which register to use,
  47.    so you do not need to allocate one.  But you still do need to add extra
  48.    instructions to copy the value into and out of that register.
  49.  
  50.    Finally you must call `subst_reloads' to substitute the reload reg rtx's
  51.    into the locations already recorded.
  52.  
  53. NOTE SIDE EFFECTS:
  54.  
  55.    find_reloads can alter the operands of the instruction it is called on.
  56.  
  57.    1. Two operands of any sort may be interchanged, if they are in a
  58.    commutative instruction.
  59.    This happens only if find_reloads thinks the instruction will compile
  60.    better that way.
  61.  
  62.    2. Pseudo-registers that are equivalent to constants are replaced
  63.    with those constants if they are not in hard registers.
  64.  
  65. 1 happens every time find_reloads is called.
  66. 2 happens only when REPLACE is 1, which is only when
  67. actually doing the reloads, not when just counting them.
  68.  
  69.  
  70. Using a reload register for several reloads in one insn:
  71.  
  72. When an insn has reloads, it is considered as having three parts:
  73. the input reloads, the insn itself after reloading, and the output reloads.
  74. Reloads of values used in memory addresses are often needed for only one part.
  75.  
  76. When this is so, reload_when_needed records which part needs the reload.
  77. Two reloads for different parts of the insn can share the same reload
  78. register.
  79.  
  80. When a reload is used for addresses in multiple parts, or when it is
  81. an ordinary operand, it is classified as RELOAD_OTHER, and cannot share
  82. a register with any other reload.  */
  83.  
  84. #define REG_OK_STRICT
  85.  
  86. #include "config.h"
  87. #include "rtl.h"
  88. #if ! defined( _INTELC32_ )
  89. #include "insn-config.h"
  90. #else
  91. #include "iconfig.h"
  92. #endif
  93. #include "recog.h"
  94. #include "reload.h"
  95. #include "regs.h"
  96. #if ! defined( _INTELC32_ )
  97. #include "hard-reg-set.h"
  98. #else
  99. #include "hardrset.h"
  100. #endif
  101. #include "flags.h"
  102. #include "real.h"
  103.  
  104. /* The variables set up by `find_reloads' are:
  105.  
  106.    n_reloads          number of distinct reloads needed; max reload # + 1
  107.        tables indexed by reload number
  108.    reload_in          rtx for value to reload from
  109.    reload_out          rtx for where to store reload-reg afterward if nec
  110.                (often the same as reload_in)
  111.    reload_reg_class      enum reg_class, saying what regs to reload into
  112.    reload_inmode      enum machine_mode; mode this operand should have
  113.                when reloaded, on input.
  114.    reload_outmode      enum machine_mode; mode this operand should have
  115.                when reloaded, on output.
  116.    reload_strict_low      char; 1 if this reload is inside a STRICT_LOW_PART.
  117.    reload_optional      char, nonzero for an optional reload.
  118.                Optional reloads are ignored unless the
  119.                value is already sitting in a register.
  120.    reload_inc          int, positive amount to increment or decrement by if
  121.                reload_in is a PRE_DEC, PRE_INC, POST_DEC, POST_INC.
  122.                Ignored otherwise (don't assume it is zero).
  123.    reload_in_reg      rtx.  A reg for which reload_in is the equivalent.
  124.                If reload_in is a symbol_ref which came from
  125.                reg_equiv_constant, then this is the pseudo
  126.                which has that symbol_ref as equivalent.
  127.    reload_reg_rtx      rtx.  This is the register to reload into.
  128.                If it is zero when `find_reloads' returns,
  129.                you must find a suitable register in the class
  130.                specified by reload_reg_class, and store here
  131.                an rtx for that register with mode from
  132.                reload_inmode or reload_outmode.
  133.    reload_nocombine      char, nonzero if this reload shouldn't be
  134.                combined with another reload.
  135.    reload_needed_for      rtx, operand this reload is needed for address of.
  136.                0 means it isn't needed for addressing.
  137.    reload_needed_for_multiple
  138.               int, 1 if this reload needed for more than one thing.
  139.    reload_when_needed     enum, classifies reload as needed either for
  140.                addressing an input reload, addressing an output,
  141.                for addressing a non-reloaded mem ref,
  142.                or for unspecified purposes (i.e., more than one
  143.                of the above).  */
  144.  
  145. int n_reloads;
  146.  
  147. rtx reload_in[MAX_RELOADS];
  148. rtx reload_out[MAX_RELOADS];
  149. enum reg_class reload_reg_class[MAX_RELOADS];
  150. enum machine_mode reload_inmode[MAX_RELOADS];
  151. enum machine_mode reload_outmode[MAX_RELOADS];
  152. char reload_strict_low[MAX_RELOADS];
  153. rtx reload_reg_rtx[MAX_RELOADS];
  154. char reload_optional[MAX_RELOADS];
  155. int reload_inc[MAX_RELOADS];
  156. rtx reload_in_reg[MAX_RELOADS];
  157. char reload_nocombine[MAX_RELOADS];
  158. int reload_needed_for_multiple[MAX_RELOADS];
  159. rtx reload_needed_for[MAX_RELOADS];
  160. enum reload_when_needed reload_when_needed[MAX_RELOADS];
  161.  
  162. /* All the "earlyclobber" operands of the current insn
  163.    are recorded here.  */
  164. int n_earlyclobbers;
  165. rtx reload_earlyclobbers[MAX_RECOG_OPERANDS];
  166.  
  167. /* Replacing reloads.
  168.  
  169.    If `replace_reloads' is nonzero, then as each reload is recorded
  170.    an entry is made for it in the table `replacements'.
  171.    Then later `subst_reloads' can look through that table and
  172.    perform all the replacements needed.  */
  173.  
  174. /* Nonzero means record the places to replace.  */
  175. static int replace_reloads;
  176.  
  177. /* Each replacement is recorded with a structure like this.  */
  178. struct replacement
  179. {
  180.   rtx *where;            /* Location to store in */
  181.   int what;            /* which reload this is for */
  182.   enum machine_mode mode;    /* mode it must have */
  183. };
  184.  
  185. static struct replacement replacements[MAX_RECOG_OPERANDS * ((MAX_REGS_PER_ADDRESS * 2) + 1)];
  186.  
  187. /* Number of replacements currently recorded.  */
  188. static int n_replacements;
  189.  
  190. /* MEM-rtx's created for pseudo-regs in stack slots not directly addressable;
  191.    (see reg_equiv_address).  */
  192. static rtx memlocs[MAX_RECOG_OPERANDS * ((MAX_REGS_PER_ADDRESS * 2) + 1)];
  193. static int n_memlocs;
  194.  
  195. /* The instruction we are doing reloads for;
  196.    so we can test whether a register dies in it.  */
  197. static rtx this_insn;
  198.  
  199. /* Nonzero means (MEM (REG n)) is valid even if (REG n) is spilled.  */
  200. static int indirect_ok;
  201.  
  202. /* If hard_regs_live_known is nonzero,
  203.    we can tell which hard regs are currently live,
  204.    at least enough to succeed in choosing dummy reloads.  */
  205. static int hard_regs_live_known;
  206.  
  207. /* Indexed by hard reg number,
  208.    element is nonegative if hard reg has been spilled.
  209.    This vector is passed to `find_reloads' as an argument
  210.    and is not changed here.  */
  211. static short *static_reload_reg_p;
  212.  
  213. /* Set to 1 in subst_reg_equivs if it changes anything.  */
  214. static int subst_reg_equivs_changed;
  215.  
  216. /* On return from push_reload, holds the reload-number for the OUT
  217.    operand, which can be different for that from the input operand.  */
  218. static int output_reloadnum;
  219.  
  220. #if defined( _MSDOS )
  221. void error_for_asm ( rtx insn, ... );
  222. #endif
  223.  
  224. static int alternative_allows_memconst ();
  225. static rtx find_dummy_reload ();
  226. static rtx find_reloads_toplev ();
  227. static int find_reloads_address ();
  228. static int find_reloads_address_1 ();
  229. static int hard_reg_set_here_p ();
  230. /* static rtx forget_volatility (); */
  231. static rtx subst_reg_equivs ();
  232. static rtx subst_indexed_address ();
  233. rtx find_equiv_reg ();
  234. static int find_inc_amount ();
  235.  
  236. /* Record one (sometimes two) reload that needs to be performed.
  237.    IN is an rtx saying where the data are to be found before this instruction.
  238.    OUT says where they must be stored after the instruction.
  239.    (IN is zero for data not read, and OUT is zero for data not written.)
  240.    INLOC and OUTLOC point to the places in the instructions where
  241.    IN and OUT were found.
  242.    CLASS is a register class required for the reloaded data.
  243.    INMODE is the machine mode that the instruction requires
  244.    for the reg that replaces IN and OUTMODE is likewise for OUT.
  245.  
  246.    If IN is zero, then OUT's location and mode should be passed as
  247.    INLOC and INMODE.
  248.  
  249.    STRICT_LOW is the 1 if there is a containing STRICT_LOW_PART rtx.
  250.  
  251.    OPTIONAL nonzero means this reload does not need to be performed:
  252.    it can be discarded if that is more convenient.
  253.  
  254.    The return value is the reload-number for this reload.
  255.  
  256.    If both IN and OUT are nonzero, in some rare cases we might
  257.    want to make two separate reloads.  (Actually we never do this now.)
  258.    Therefore, the reload-number for OUT is stored in
  259.    output_reloadnum when we return; the return value applies to IN.
  260.    Usually (presently always), when IN and OUT are nonzero,
  261.    the two reload-numbers are equal, but the caller should be careful to
  262.    distinguish them.  */
  263.  
  264. static int
  265. push_reload (in, out, inloc, outloc, class,
  266.          inmode, outmode, strict_low, optional, needed_for)
  267.      register rtx in, out;
  268.      rtx *inloc, *outloc;
  269.      enum reg_class class;
  270.      enum machine_mode inmode, outmode;
  271.      int strict_low;
  272.      int optional;
  273.      rtx needed_for;
  274. {
  275.   register int i;
  276.   int dont_share = 0;
  277.  
  278.   /* Compare two RTX's.  */
  279. #define MATCHES(x, y) (x == y || (x != 0 && GET_CODE (x) != REG && rtx_equal_p (x, y)))
  280.  
  281.   /* INMODE and/or OUTMODE could be VOIDmode if no mode
  282.      has been specified for the operand.  In that case,
  283.      use the operand's mode as the mode to reload.  */
  284.   if (inmode == VOIDmode && in != 0)
  285.     inmode = GET_MODE (in);
  286.   if (outmode == VOIDmode && out != 0)
  287.     outmode = GET_MODE (out);
  288.  
  289.   /* If IN is a pseudo register everywhere-equivalent to a constant, and 
  290.      it is not in a hard register, reload straight from the constant,
  291.      since we want to get rid of such pseudo registers.
  292.      Often this is done earlier, but not always in find_reloads_address.  */
  293.   if (in != 0 && GET_CODE (in) == REG)
  294.     {
  295.       register int regno = REGNO (in);
  296.  
  297.       if (regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
  298.       && reg_equiv_constant[regno] != 0)
  299.     in = reg_equiv_constant[regno];
  300.     }
  301.  
  302.   /* Likewise for OUT.  Of course, OUT will never be equivalent to
  303.      an actual constant, but it might be equivalent to a memory location
  304.      (in the case of a parameter).  */
  305.   if (out != 0 && GET_CODE (out) == REG)
  306.     {
  307.       register int regno = REGNO (out);
  308.  
  309.       if (regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
  310.       && reg_equiv_constant[regno] != 0)
  311.     out = reg_equiv_constant[regno];
  312.     }
  313.  
  314.   /* If we have a read-write operand with an address side-effect,
  315.      change either IN or OUT so the side-effect happens only once.  */
  316.   if (in != 0 && out != 0 && GET_CODE (in) == MEM && rtx_equal_p (in, out))
  317.     {
  318.       if (GET_CODE (XEXP (in, 0)) == POST_INC
  319.       || GET_CODE (XEXP (in, 0)) == POST_DEC)
  320.     in = gen_rtx (MEM, GET_MODE (in), XEXP (XEXP (in, 0), 0));
  321.       if (GET_CODE (XEXP (in, 0)) == PRE_INC
  322.       || GET_CODE (XEXP (in, 0)) == PRE_DEC)
  323.     out = gen_rtx (MEM, GET_MODE (out), XEXP (XEXP (out, 0), 0));
  324.     }
  325.  
  326.   /* If we are reloading a (SUBREG (MEM ...) ...) or (SUBREG constant ...),
  327.      really reload just the inside expression in its own mode.
  328.      Note that the case of (SUBREG (CONST_INT...)...) is handled elsewhere;
  329.      we can't handle it here because CONST_INT does not indicate a mode.  */
  330.  
  331.   if (in != 0 && GET_CODE (in) == SUBREG && GET_CODE (SUBREG_REG (in)) != REG)
  332.     {
  333.       inloc = &SUBREG_REG (in);
  334.       in = *inloc;
  335.       if (GET_CODE (SUBREG_REG (in)) == MEM)
  336.     /* This is supposed to happen only for paradoxical subregs made by
  337.        combine.c.  (SUBREG (MEM)) isn't supposed to occur other ways.  */
  338.     if (GET_MODE_SIZE (GET_MODE (in)) > GET_MODE_SIZE (inmode))
  339.       abort ();
  340.       inmode = GET_MODE (in);
  341.     }
  342.  
  343.   /* If IN appears in OUT, we can't share any input-only reload for IN.  */
  344.   if (in != 0 && out != 0 && reg_overlap_mentioned_p (in, out))
  345.     dont_share = 1;
  346.  
  347.   /* Narrow down the class of register wanted if that is
  348.      desirable on this machine for efficiency.  */
  349.   if (in != 0)
  350.     class = PREFERRED_RELOAD_CLASS (in, class);
  351.  
  352.   if (class == NO_REGS)
  353.     abort ();
  354.  
  355.   /* We can use an existing reload if the class is right
  356.      and at least one of IN and OUT is a match
  357.      and the other is at worst neutral.
  358.      (A zero compared against anything is neutral.)  */
  359.   for (i = 0; i < n_reloads; i++)
  360.     if (reload_reg_class[i] == class
  361.     && reload_strict_low[i] == strict_low
  362.     && ((in != 0 && MATCHES (reload_in[i], in) && ! dont_share
  363.          && (out == 0 || reload_out[i] == 0 || MATCHES (reload_out[i], out)))
  364.         ||
  365.         (out != 0 && MATCHES (reload_out[i], out)
  366.          && (in == 0 || reload_in[i] == 0 || MATCHES (reload_in[i], in)))))
  367.       break;
  368.  
  369.   /* Reloading a plain reg for input can match a reload to postincrement
  370.      that reg, since the postincrement's value is the right value.
  371.      Likewise, it can match a preincrement reload, since we regard
  372.      the preincrementation as happening before any ref in this insn
  373.      to that register.  */
  374.   if (i == n_reloads)
  375.     for (i = 0; i < n_reloads; i++)
  376.       if (reload_reg_class[i] == class
  377.       && reload_strict_low[i] == strict_low
  378.       && out == 0 && reload_out[i] == 0
  379.       && ((GET_CODE (in) == REG
  380.            && (GET_CODE (reload_in[i]) == POST_INC
  381.            || GET_CODE (reload_in[i]) == POST_DEC
  382.            || GET_CODE (reload_in[i]) == PRE_INC
  383.            || GET_CODE (reload_in[i]) == PRE_DEC)
  384.            && MATCHES (XEXP (reload_in[i], 0), in))
  385.           ||
  386.           (GET_CODE (reload_in[i]) == REG
  387.            && (GET_CODE (in) == POST_INC
  388.            || GET_CODE (in) == POST_DEC
  389.            || GET_CODE (in) == PRE_INC
  390.            || GET_CODE (in) == PRE_DEC)
  391.            && MATCHES (XEXP (in, 0), reload_in[i]))))
  392.     {
  393.       /* Make sure reload_in ultimately has the increment,
  394.          not the plain register.  */
  395.       if (GET_CODE (in) == REG)
  396.         in = reload_in[i];
  397.       break;
  398.     }
  399.  
  400.   if (i == n_reloads)
  401.     {
  402.       /* We found no existing reload suitable for re-use.
  403.      So add an additional reload.  */
  404.  
  405.       reload_in[i] = in;
  406.       reload_out[i] = out;
  407.       reload_reg_class[i] = class;
  408.       reload_inmode[i] = inmode;
  409.       reload_outmode[i] = outmode;
  410.       reload_reg_rtx[i] = 0;
  411.       reload_optional[i] = optional;
  412.       reload_inc[i] = 0;
  413.       reload_strict_low[i] = strict_low;
  414.       reload_nocombine[i] = 0;
  415.       reload_in_reg[i] = *inloc;
  416.       reload_needed_for[i] = needed_for;
  417.       reload_needed_for_multiple[i] = 0;
  418.  
  419.       n_reloads++;
  420.     }
  421.   else
  422.     {
  423.       /* We are reusing an existing reload,
  424.      but we may have additional information for it.
  425.      For example, we may now have both IN and OUT
  426.      while the old one may have just one of them.  */
  427.  
  428.       if (inmode != VOIDmode)
  429.     reload_inmode[i] = inmode;
  430.       if (outmode != VOIDmode)
  431.     reload_outmode[i] = outmode;
  432.       if (in != 0)
  433.     reload_in[i] = in;
  434.       if (out != 0)
  435.     reload_out[i] = out;
  436.       reload_optional[i] &= optional;
  437.       if (reload_needed_for[i] != needed_for)
  438.     reload_needed_for_multiple[i] = 1;
  439.     }
  440.  
  441.   /* If the ostensible rtx being reload differs from the rtx found
  442.      in the location to substitute, this reload is not safe to combine
  443.      because we cannot reliably tell whether it appears in the insn.  */
  444.  
  445.   if (in != 0 && in != *inloc)
  446.     reload_nocombine[i] = 1;
  447.  
  448. #if 0
  449.   /* This was replaced by changes in find_reloads_address_1 and the new
  450.      function inc_for_reload, which go with a new meaning of reload_inc.  */
  451.  
  452.   /* If this is an IN/OUT reload in an insn that sets the CC,
  453.      it must be for an autoincrement.  It doesn't work to store
  454.      the incremented value after the insn because that would clobber the CC.
  455.      So we must do the increment of the value reloaded from,
  456.      increment it, store it back, then decrement again.  */
  457.   if (out != 0 && sets_cc0_p (PATTERN (this_insn)))
  458.     {
  459.       out = 0;
  460.       reload_out[i] = 0;
  461.       reload_inc[i] = find_inc_amount (PATTERN (this_insn), in);
  462.       /* If we did not find a nonzero amount-to-increment-by,
  463.      that contradicts the belief that IN is being incremented
  464.      in an address in this insn.  */
  465.       if (reload_inc[i] == 0)
  466.     abort ();
  467.     }
  468. #endif
  469.  
  470.   /* If we will replace IN and OUT with the reload-reg,
  471.      record where they are located so that substitution need
  472.      not do a tree walk.  */
  473.  
  474.   if (replace_reloads)
  475.     {
  476.       if (inloc != 0)
  477.     {
  478.       register struct replacement *r = &replacements[n_replacements++];
  479.       r->what = i;
  480.       r->where = inloc;
  481.       r->mode = inmode;
  482.     }
  483.       if (outloc != 0 && outloc != inloc)
  484.     {
  485.       register struct replacement *r = &replacements[n_replacements++];
  486.       r->what = i;
  487.       r->where = outloc;
  488.       r->mode = outmode;
  489.     }
  490.     }
  491.  
  492.   /* If this reload is just being introduced and it has both
  493.      an incoming quantity and an outgoing quantity that are
  494.      supposed to be made to match, see if either one of the two
  495.      can serve as the place to reload into.
  496.  
  497.      If one of them is acceptable, set reload_reg_rtx[i]
  498.      to that one.  */
  499.  
  500.   if (in != 0 && out != 0 && in != out && reload_reg_rtx[i] == 0)
  501.     {
  502.       reload_reg_rtx[i] = find_dummy_reload (in, out, inloc, outloc,
  503.                          reload_reg_class[i], i);
  504.  
  505.       /* If the outgoing register already contains the same value
  506.      as the incoming one, we can dispense with loading it.
  507.      The easiest way to tell the caller that is to give a phony
  508.      value for the incoming operand (same as outgoing one).  */
  509.       if (reload_reg_rtx[i] == out
  510.       && (GET_CODE (in) == REG || CONSTANT_P (in))
  511.       && 0 != find_equiv_reg (in, this_insn, 0, REGNO (out),
  512.                   static_reload_reg_p, i, inmode))
  513.     reload_in[i] = out;
  514.     }
  515.  
  516.   if (out)
  517.     output_reloadnum = i;
  518.  
  519.   return i;
  520. }
  521.  
  522. /* Record an additional place we must replace a value
  523.    for which we have already recorded a reload.
  524.    RELOADNUM is the value returned by push_reload
  525.    when the reload was recorded.
  526.    This is used in insn patterns that use match_dup.  */
  527.  
  528. static void
  529. push_replacement (loc, reloadnum, mode)
  530.      rtx *loc;
  531.      int reloadnum;
  532.      enum machine_mode mode;
  533. {
  534.   if (replace_reloads)
  535.     {
  536.       register struct replacement *r = &replacements[n_replacements++];
  537.       r->what = reloadnum;
  538.       r->where = loc;
  539.       r->mode = mode;
  540.     }
  541. }
  542.  
  543. /* If there is only one output reload, try to combine it
  544.    with a (logically unrelated) input reload
  545.    to reduce the number of reload registers needed.
  546.  
  547.    This is safe if the input reload does not appear in
  548.    the value being output-reloaded, because this implies
  549.    it is not needed any more once the original insn completes.  */
  550.  
  551. static void
  552. combine_reloads ()
  553. {
  554.   int i;
  555.   int output_reload = -1;
  556.  
  557.   /* Find the output reload; return unless there is exactly one
  558.      and that one is mandatory.  */
  559.  
  560.   for (i = 0; i < n_reloads; i++)
  561.     if (reload_out[i] != 0)
  562.       {
  563.     if (output_reload >= 0)
  564.       return;
  565.     output_reload = i;
  566.       }
  567.  
  568.   if (output_reload < 0 || reload_optional[output_reload])
  569.     return;
  570.  
  571.   /* An input-output reload isn't combinable.  */
  572.  
  573.   if (reload_in[output_reload] != 0)
  574.     return;
  575.  
  576.   /* Check each input reload; can we combine it?  */
  577.  
  578.   for (i = 0; i < n_reloads; i++)
  579.     if (reload_in[i] && ! reload_optional[i] && ! reload_nocombine[i]
  580.     /* Life span of this reload must not extend past main insn.  */
  581.     && reload_when_needed[i] != RELOAD_FOR_OUTPUT_RELOAD_ADDRESS
  582.     && reload_inmode[i] == reload_outmode[output_reload]
  583.     && reload_inc[i] == 0
  584.     && reload_reg_rtx[i] == 0
  585.     && reload_strict_low[i] == 0
  586.     && reload_reg_class[i] == reload_reg_class[output_reload]
  587.     && ! reg_overlap_mentioned_p (reload_in[i], reload_out[output_reload]))
  588.       {
  589.     int j;
  590.  
  591.     /* We have found a reload to combine with!  */
  592.     reload_out[i] = reload_out[output_reload];
  593.     reload_outmode[i] = reload_outmode[output_reload];
  594.     /* Mark the old output reload as inoperative.  */
  595.     reload_out[output_reload] = 0;
  596.     /* The combined reload is needed for the entire insn.  */
  597.     reload_needed_for_multiple[i] = 1;
  598.     reload_when_needed[i] = RELOAD_OTHER;
  599.  
  600.     /* Transfer all replacements from the old reload to the combined.  */
  601.     for (j = 0; j < n_replacements; j++)
  602.       if (replacements[j].what == output_reload)
  603.         replacements[j].what = i;
  604.  
  605.     return;
  606.       }
  607. }
  608.  
  609. /* Try to find a reload register for an in-out reload (expressions IN and OUT).
  610.    See if one of IN and OUT is a register that may be used;
  611.    this is desirable since a spill-register won't be needed.
  612.    If so, return the register rtx that proves acceptable.
  613.  
  614.    INLOC and OUTLOC are locations where IN and OUT appear in the insn.
  615.    CLASS is the register class required for the reload.
  616.  
  617.    If FOR_REAL is >= 0, it is the number of the reload,
  618.    and in some cases when it can be discovered that OUT doesn't need
  619.    to be computed, clear out reload_out[FOR_REAL].
  620.  
  621.    If FOR_REAL is -1, this should not be done, because this call
  622.    is just to see if a register can be found, not to find and install it.  */
  623.  
  624. static rtx
  625. find_dummy_reload (in, out, inloc, outloc, class, for_real)
  626.      rtx in, out;
  627.      rtx *inloc, *outloc;
  628.      enum reg_class class;
  629.      int for_real;
  630. {
  631.   rtx value = 0;
  632.   rtx orig_in = in;
  633.  
  634.   while (GET_CODE (out) == SUBREG)
  635.     out = SUBREG_REG (out);
  636.   while (GET_CODE (in) == SUBREG)
  637.     in = SUBREG_REG (in);
  638.  
  639.   /* If operands exceed a word, we can't use either of them
  640.      unless they have the same size.  */
  641.   if (GET_MODE_SIZE (GET_MODE (out)) != GET_MODE_SIZE (GET_MODE (in))
  642.       && (GET_MODE_SIZE (GET_MODE (out)) > UNITS_PER_WORD
  643.       || GET_MODE_SIZE (GET_MODE (in)) > UNITS_PER_WORD))
  644.     return 0;
  645.  
  646. #if defined( DSP96000 ) 
  647.   /* for the 96k in the l memory_model, all MODE_SIZEs are one so that
  648.      memory indexing is done correctly for doubles, chars, etc. this
  649.      makes the above MODE_SIZE based qualification inaccurate. if we
  650.      are in the l memory_model, and the MODE_SIZEs for in and out differ,
  651.      and either of in or out is either DImode, SFmode, or DFmode, then
  652.      we can't use this trick. actually SFmode and DFmode, because they
  653.      are 96 bits in registers and 32/64 bits in memory, will fuck up *any*
  654.      MODE_SIZE base check. So, we'll always qualify with mode instead of
  655.      MODE_SIZE. ps. on the 96k if the modes differ, then the sizes differ.*/
  656.   if ( GET_MODE ( out ) != GET_MODE ( in ))
  657.     {
  658.       return 0;
  659.     }
  660. #endif
  661. #if defined( DSP56000 ) 
  662.   /* similar to above 96k comment. */
  663.   if (( GET_MODE ( out ) != GET_MODE ( in )) && ( 'l' == memory_model ))
  664.   {
  665.       enum machine_mode outmode = GET_MODE ( out ), inmode = GET_MODE ( in );
  666.       
  667.       if ( ! ((( DImode == outmode ) || ( SFmode == outmode ) ||
  668.            ( DFmode == outmode )) &&
  669.           (( DImode == inmode ) || ( SFmode == inmode ) ||
  670.            ( DFmode == inmode ))))
  671.       {
  672.       return 0;
  673.       }
  674.   }
  675. #endif
  676.   /* See if OUT will do.  */
  677.   if (GET_CODE (out) == REG)
  678.     {
  679.       register int regno = REGNO (out);
  680.  
  681.       /* When we consider whether the insn uses OUT,
  682.      ignore references within IN.  They don't prevent us
  683.      from copying IN into OUT, because those refs would
  684.      move into the insn that reloads IN.
  685.  
  686.      However, we only ignore IN in its role as this operand.
  687.      If the insn uses IN elsewhere and it contains OUT,
  688.      that counts.  We can't be sure it's the "same" operand
  689.      so it might not go through this reload.  */
  690.       *inloc = const0_rtx;
  691.  
  692.       if (reg_renumber[regno] >= 0)
  693.     regno = reg_renumber[regno];
  694.       if (regno < FIRST_PSEUDO_REGISTER
  695.       /* A fixed reg that can overlap other regs better not be used
  696.          for reloading in any way.  */
  697. #ifdef OVERLAPPING_REGNO_P
  698.       && ! (fixed_regs[regno] && OVERLAPPING_REGNO_P (regno))
  699. #endif
  700.       && ! refers_to_regno_p (regno, regno + HARD_REGNO_NREGS (regno, GET_MODE (out)),
  701.                   PATTERN (this_insn), outloc)
  702.       && TEST_HARD_REG_BIT (reg_class_contents[(int) class], regno))
  703.     value = out;
  704.  
  705.       *inloc = orig_in;
  706.     }
  707.  
  708.   /* Consider using IN if OUT was not acceptable
  709.      or if OUT dies in this insn (like the quotient in a divmod insn).
  710.      We can't use IN unless it is free after this insn,
  711.      which means we must know accurately which hard regs are live.
  712.      Also, the result can't go in IN if IN is used within OUT.  */
  713.   if (hard_regs_live_known
  714.       && GET_CODE (in) == REG
  715.       && ! find_reg_note (this_insn, REG_UNSET, in)
  716.       && (value == 0
  717.       || find_regno_note (this_insn, REG_DEAD, REGNO (value))))
  718.     {
  719.       register int regno = REGNO (in);
  720.       if (find_regno_note (this_insn, REG_DEAD, regno))
  721.     {
  722.       if (reg_renumber[regno] >= 0)
  723.         regno = reg_renumber[regno];
  724.       if (regno < FIRST_PSEUDO_REGISTER
  725.           && ! refers_to_regno_p (regno,
  726.                       regno + HARD_REGNO_NREGS (regno, GET_MODE (in)),
  727.                       out, 0)
  728.           && ! hard_reg_set_here_p (regno, PATTERN (this_insn))
  729.           && TEST_HARD_REG_BIT (reg_class_contents[(int) class], regno))
  730.         {
  731.           /* If we were going to use OUT as the reload reg
  732.          and changed our mind, it means OUT is a dummy that
  733.          dies here.  So don't bother copying value to it.  */
  734.           if (for_real >= 0 && value == out)
  735.         reload_out[for_real] = 0;
  736.           value = in;
  737.         }
  738.     }
  739.     }
  740.  
  741.   return value;
  742. }
  743.  
  744. /* This page contains subroutines used mainly for determining
  745.    whether the IN or an OUT of a reload can serve as the
  746.    reload register.  */
  747.  
  748. /* Return 1 if hard reg number REGNO is stored in by expression X,
  749.    either explicitly or in the guise of a pseudo-reg allocated to REGNO.
  750.    X should be the body of an instruction.  */
  751.  
  752. static int
  753. hard_reg_set_here_p (regno, x)
  754.      register int regno;
  755.      rtx x;
  756. {
  757.   if (GET_CODE (x) == SET || GET_CODE (x) == CLOBBER)
  758.     {
  759.       register rtx op0 = SET_DEST (x);
  760.       while (GET_CODE (op0) == SUBREG)
  761.     op0 = SUBREG_REG (op0);
  762.       if (GET_CODE (op0) == REG)
  763.     {
  764.       register int r = REGNO (op0);
  765.       /* See if this reg includes the specified one.  */
  766.       if (r <= regno && r + HARD_REGNO_NREGS (r, GET_MODE (op0)) > regno)
  767.         return 1;
  768.     }
  769.     }
  770.   else if (GET_CODE (x) == PARALLEL)
  771.     {
  772.       register int i = XVECLEN (x, 0) - 1;
  773.       for (; i >= 0; i--)
  774.     if (hard_reg_set_here_p (regno, XVECEXP (x, 0, i)))
  775.       return 1;
  776.     }
  777.  
  778.   return 0;
  779. }
  780.  
  781. /* Return 1 if ADDR is a valid memory address for mode MODE,
  782.    and check that each pseudo reg has the proper kind of
  783.    hard reg.  */
  784.  
  785. int
  786. strict_memory_address_p (mode, addr)
  787.      enum machine_mode mode;
  788.      register rtx addr;
  789. {
  790.   GO_IF_LEGITIMATE_ADDRESS (mode, addr, win);
  791.   return 0;
  792.  
  793.  win:
  794.   return 1;
  795. }
  796.  
  797.  
  798. /* Like rtx_equal_p except that it allows a REG and a SUBREG to match
  799.    if they are the same hard reg, and has special hacks for
  800.    autoincrement and autodecrement.
  801.    This is specifically intended for find_reloads to use
  802.    in determining whether two operands match.
  803.    X is the operand whose number is the lower of the two.
  804.  
  805.    The value is 2 if Y contains a pre-increment that matches
  806.    a non-incrementing address in X.  */
  807.  
  808. /* ??? To be completely correct, we should arrange to pass
  809.    for X the output operand and for Y the input operand.
  810.    For now, we assume that the output operand has the lower number
  811.    because that is natural in (SET output (... input ...)).  */
  812.  
  813. int
  814. operands_match_p (x, y)
  815.      register rtx x, y;
  816. {
  817.   register int i;
  818.   register RTX_CODE code = GET_CODE (x);
  819.   register char *fmt;
  820.   int success_2;
  821.       
  822.   if (x == y)
  823.     return 1;
  824.   if ((code == REG || (code == SUBREG && GET_CODE (SUBREG_REG (x)) == REG))
  825.       && (GET_CODE (y) == REG || (GET_CODE (y) == SUBREG
  826.                   && GET_CODE (SUBREG_REG (y)) == REG)))
  827.     {
  828.       register int j;
  829.  
  830.       if (code == SUBREG)
  831.     {
  832.       i = REGNO (SUBREG_REG (x));
  833.       if (i >= FIRST_PSEUDO_REGISTER)
  834.         goto slow;
  835.       i += SUBREG_WORD (x);
  836.     }
  837.       else
  838.     i = REGNO (x);
  839.  
  840.       if (GET_CODE (y) == SUBREG)
  841.     {
  842.       j = REGNO (SUBREG_REG (y));
  843.       if (j >= FIRST_PSEUDO_REGISTER)
  844.         goto slow;
  845.       j += SUBREG_WORD (y);
  846.     }
  847.       else
  848.     j = REGNO (y);
  849.  
  850.       return i == j;
  851.     }
  852.   /* If two operands must match, because they are really a single
  853.      operand of an assembler insn, then two postincrements are invalid
  854.      because the assembler insn would increment only once.
  855.      On the other hand, an postincrement matches ordinary indexing
  856.      if the postincrement is the output operand.  */
  857.   if (code == POST_DEC || code == POST_INC)
  858.     return operands_match_p (XEXP (x, 0), y);
  859.   /* Two preincrements are invalid
  860.      because the assembler insn would increment only once.
  861.      On the other hand, an preincrement matches ordinary indexing
  862.      if the preincrement is the input operand.
  863.      In this case, return 2, since some callers need to do special
  864.      things when this happens.  */
  865.   if (GET_CODE (y) == PRE_DEC || GET_CODE (y) == PRE_INC)
  866.     return operands_match_p (x, XEXP (y, 0)) ? 2 : 0;
  867.  
  868.  slow:
  869.  
  870.   /* Now we have disposed of all the cases 
  871.      in which different rtx codes can match.  */
  872.   if (code != GET_CODE (y))
  873.     return 0;
  874.   if (code == LABEL_REF)
  875.     return XEXP (x, 0) == XEXP (y, 0);
  876.   if (code == SYMBOL_REF)
  877.     return XSTR (x, 0) == XSTR (y, 0);
  878.  
  879.   /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent.  */
  880.  
  881.   if (GET_MODE (x) != GET_MODE (y))
  882.     return 0;
  883.  
  884.   /* Compare the elements.  If any pair of corresponding elements
  885.      fail to match, return 0 for the whole things.  */
  886.  
  887.   success_2 = 0;
  888.   fmt = GET_RTX_FORMAT (code);
  889.   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
  890.     {
  891.       int val;
  892.       switch (fmt[i])
  893.     {
  894.     case 'i':
  895.       if (XINT (x, i) != XINT (y, i))
  896.         return 0;
  897.       break;
  898.  
  899.     case 'e':
  900.       val = operands_match_p (XEXP (x, i), XEXP (y, i));
  901.       if (val == 0)
  902.         return 0;
  903.       /* If any subexpression returns 2,
  904.          we should return 2 if we are successful.  */
  905.       if (val == 2)
  906.         success_2 = 1;
  907.       break;
  908.  
  909.     case '0':
  910.       break;
  911.  
  912.       /* It is believed that rtx's at this level will never
  913.          contain anything but integers and other rtx's,
  914.          except for within LABEL_REFs and SYMBOL_REFs.  */
  915.     default:
  916.       abort ();
  917.     }
  918.     }
  919.   return 1 + success_2;
  920. }
  921.  
  922. /* Return the number of times character C occurs in string S.  */
  923.  
  924. static int
  925. n_occurrences (c, s)
  926.      char c;
  927.      char *s;
  928. {
  929.   int n = 0;
  930.   while (*s)
  931.     n += (*s++ == c);
  932.   return n;
  933. }
  934.  
  935. struct decomposition
  936. {
  937.   int reg_flag;
  938.   int safe;
  939.   rtx base;
  940.   int start;
  941.   int end;
  942. };
  943.  
  944. /* Describe the range of registers or memory referenced by X.
  945.    If X is a register, set REG_FLAG and put the first register 
  946.    number into START and the last plus one into END.
  947.    If X is a memory reference, put a base address into BASE 
  948.    and a range of integer offsets into START and END.
  949.    If X is pushing on the stack, we can assume it causes no trouble, 
  950.    so we set the SAFE field.  */
  951.  
  952. static struct decomposition
  953. decompose (x)
  954.      rtx x;
  955. {
  956.   struct decomposition val;
  957.   int all_const = 0;
  958.  
  959.   val.reg_flag = 0;
  960.   val.safe = 0;
  961.   if (GET_CODE (x) == MEM)
  962.     {
  963.       rtx base, offset = 0;
  964.       rtx addr = XEXP (x, 0);
  965.  
  966.       if (GET_CODE (addr) == PRE_DEC || GET_CODE (addr) == PRE_INC
  967.       || GET_CODE (addr) == POST_DEC || GET_CODE (addr) == POST_INC)
  968.     {
  969.       val.base = XEXP (addr, 0);
  970.       val.start = - GET_MODE_SIZE (GET_MODE (x));
  971.       val.end = GET_MODE_SIZE (GET_MODE (x));
  972.       val.safe = REGNO (val.base) == STACK_POINTER_REGNUM;
  973.       return val;
  974.     }
  975.  
  976.       if (GET_CODE (addr) == CONST)
  977.     {
  978.       addr = XEXP (addr, 0);
  979.       all_const = 1;
  980.     }
  981.       if (GET_CODE (addr) == PLUS)
  982.     {
  983.       if (CONSTANT_P (XEXP (addr, 0)))
  984.         {
  985.           base = XEXP (addr, 1);
  986.           offset = XEXP (addr, 0);
  987.         }
  988.       else if (CONSTANT_P (XEXP (addr, 1)))
  989.         {
  990.           base = XEXP (addr, 0);
  991.           offset = XEXP (addr, 1);
  992.         }
  993.     }
  994.  
  995.       if (offset == 0)
  996.     {
  997.       base = addr;
  998.       offset = const0_rtx;
  999.     } 
  1000.       if (GET_CODE (offset) == CONST)
  1001.     offset = XEXP (offset, 0);
  1002.       if (GET_CODE (offset) == PLUS)
  1003.     {
  1004.       if (GET_CODE (XEXP (offset, 0)) == CONST_INT)
  1005.         {
  1006.           base = gen_rtx (PLUS, GET_MODE (base), base, XEXP (offset, 1));
  1007.           offset = XEXP (offset, 0);
  1008.         }
  1009.       else if (GET_CODE (XEXP (offset, 1)) == CONST_INT)
  1010.         {
  1011.           base = gen_rtx (PLUS, GET_MODE (base), base, XEXP (offset, 0));
  1012.           offset = XEXP (offset, 1);
  1013.         }
  1014.       else
  1015.         {
  1016.           base = gen_rtx (PLUS, GET_MODE (base), base, offset);
  1017.           offset = const0_rtx;
  1018.         }
  1019.     }
  1020.       else if (GET_CODE (offset) != CONST_INT)
  1021.     {
  1022.       base = gen_rtx (PLUS, GET_MODE (base), base, offset);
  1023.       offset = const0_rtx;
  1024.     }
  1025.  
  1026.       if (all_const && GET_CODE (base) == PLUS)
  1027.     base = gen_rtx (CONST, GET_MODE (base), base);
  1028.  
  1029.       if (GET_CODE (offset) != CONST_INT)
  1030.     abort ();
  1031.  
  1032.       val.start = INTVAL (offset);
  1033.       val.end = val.start + GET_MODE_SIZE (GET_MODE (x));
  1034.       val.base = base;
  1035.       return val;
  1036.     }
  1037.   else if (GET_CODE (x) == REG)
  1038.     {
  1039.       val.reg_flag = 1;
  1040.       val.start = true_regnum (x); 
  1041.       if (val.start < 0)
  1042.     {
  1043.       /* A pseudo with no hard reg.  */
  1044.       val.start = REGNO (x);
  1045.       val.end = val.start + 1;
  1046.     }
  1047.       else
  1048.     /* A hard reg.  */
  1049.     val.end = val.start + HARD_REGNO_NREGS (val.start, GET_MODE (x));
  1050.     }
  1051.   else if (GET_CODE (x) == SUBREG)
  1052.     {
  1053.       if (GET_CODE (SUBREG_REG (x)) != REG)
  1054.     /* This could be more precise, but it's good enough.  */
  1055.     return decompose (SUBREG_REG (x));
  1056.       val.reg_flag = 1;
  1057.       val.start = true_regnum (x); 
  1058.       if (val.start < 0)
  1059.     return decompose (SUBREG_REG (x));
  1060.       else
  1061.     /* A hard reg.  */
  1062.     val.end = val.start + HARD_REGNO_NREGS (val.start, GET_MODE (x));
  1063.     }
  1064.   else
  1065.     abort ();
  1066.   return val;
  1067. }
  1068.  
  1069. /* Return 1 if altering Y will not modify the value of X.
  1070.    Y is also described by YDATA, which should be decompose (Y).  */
  1071.  
  1072. static int
  1073. immune_p (x, y, ydata)
  1074.      rtx x, y;
  1075.      struct decomposition ydata;
  1076. {
  1077.   struct decomposition xdata;
  1078.  
  1079.   if (ydata.reg_flag)
  1080.     return !refers_to_regno_p (ydata.start, ydata.end, x, 0);
  1081.   if (ydata.safe)
  1082.     return 1;
  1083.  
  1084.   if (GET_CODE (y) != MEM)
  1085.     abort ();
  1086.   /* If Y is memory and X is not, Y can't affect X.  */
  1087.   if (GET_CODE (x) != MEM)
  1088.     return 1;
  1089.  
  1090.   xdata =  decompose (x);
  1091.  
  1092.   if (! rtx_equal_p (xdata.base, ydata.base))
  1093.     {
  1094.       /* If bases are distinct symbolic constants, there is no overlap.  */
  1095.       if (CONSTANT_P (xdata.base) && CONSTANT_P (ydata.base))
  1096.     return 1;
  1097.       /* Constants and stack slots never overlap.  */
  1098.       if (CONSTANT_P (xdata.base)
  1099.       && (ydata.base == frame_pointer_rtx
  1100.           || ydata.base == stack_pointer_rtx))
  1101.     return 1;
  1102.       if (CONSTANT_P (ydata.base)
  1103.       && (xdata.base == frame_pointer_rtx
  1104.           || xdata.base == stack_pointer_rtx))
  1105.     return 1;
  1106.       /* If either base is variable, we don't know anything.  */
  1107.       return 0;
  1108.     }
  1109.  
  1110.  
  1111.   return (xdata.start >= ydata.end || ydata.start >= xdata.end);
  1112. }
  1113.  
  1114. /* Main entry point of this file: search the body of INSN
  1115.    for values that need reloading and record them with push_reload.
  1116.    REPLACE nonzero means record also where the values occur
  1117.    so that subst_reloads can be used.
  1118.    IND_OK says that a memory reference is a valid memory address.
  1119.  
  1120.    LIVE_KNOWN says we have valid information about which hard
  1121.    regs are live at each point in the program; this is true when
  1122.    we are called from global_alloc but false when stupid register
  1123.    allocation has been done.
  1124.  
  1125.    RELOAD_REG_P if nonzero is a vector indexed by hard reg number
  1126.    which is nonnegative if the reg has been commandeered for reloading into.
  1127.    It is copied into STATIC_RELOAD_REG_P and referenced from there
  1128.    by various subroutines.  */
  1129.  
  1130. void
  1131. find_reloads (insn, replace, ind_ok, live_known, reload_reg_p)
  1132.      rtx insn;
  1133.      int replace, ind_ok;
  1134.      int live_known;
  1135.      short *reload_reg_p;
  1136. {
  1137. #ifdef REGISTER_CONSTRAINTS
  1138.  
  1139.   enum reload_modified { RELOAD_NOTHING, RELOAD_READ, RELOAD_READ_WRITE, RELOAD_WRITE };
  1140.  
  1141.   register int insn_code_number;
  1142.   register int i;
  1143.   int noperands;
  1144.   /* These are the constraints for the insn.  We don't change them.  */
  1145.   char *constraints1[MAX_RECOG_OPERANDS];
  1146.   /* These start out as the constraints for the insn
  1147.      and they are chewed up as we consider alternatives.  */
  1148.   char *constraints[MAX_RECOG_OPERANDS];
  1149.   /* Nonzero for a MEM operand whose entire address needs a reload.  */
  1150.   int address_reloaded[MAX_RECOG_OPERANDS];
  1151.   int n_alternatives;
  1152.   int this_alternative[MAX_RECOG_OPERANDS];
  1153.   char this_alternative_win[MAX_RECOG_OPERANDS];
  1154.   char this_alternative_offmemok[MAX_RECOG_OPERANDS];
  1155.   char this_alternative_earlyclobber[MAX_RECOG_OPERANDS];
  1156.   int this_alternative_matches[MAX_RECOG_OPERANDS];
  1157.   int swapped;
  1158.   int goal_alternative[MAX_RECOG_OPERANDS];
  1159.   int this_alternative_number;
  1160.   int goal_alternative_number;
  1161.   int operand_reloadnum[MAX_RECOG_OPERANDS];
  1162.   int goal_alternative_matches[MAX_RECOG_OPERANDS];
  1163.   int goal_alternative_matched[MAX_RECOG_OPERANDS];
  1164.   char goal_alternative_win[MAX_RECOG_OPERANDS];
  1165.   char goal_alternative_offmemok[MAX_RECOG_OPERANDS];
  1166.   char goal_alternative_earlyclobber[MAX_RECOG_OPERANDS];
  1167.   int goal_alternative_swapped;
  1168.   enum reload_modified modified[MAX_RECOG_OPERANDS];
  1169.   int best;
  1170.   int commutative;
  1171.   char operands_match[MAX_RECOG_OPERANDS][MAX_RECOG_OPERANDS];
  1172.   rtx substed_operand[MAX_RECOG_OPERANDS];
  1173.   rtx body = PATTERN (insn);
  1174.   int goal_earlyclobber, this_earlyclobber;
  1175.   enum machine_mode operand_mode[MAX_RECOG_OPERANDS];
  1176.  
  1177.   this_insn = insn;
  1178.   n_reloads = 0;
  1179.   n_replacements = 0;
  1180.   n_memlocs = 0;
  1181.   n_earlyclobbers = 0;
  1182.   replace_reloads = replace;
  1183.   indirect_ok = ind_ok;
  1184.   hard_regs_live_known = live_known;
  1185.   static_reload_reg_p = reload_reg_p;
  1186.  
  1187.   /* Find what kind of insn this is.  NOPERANDS gets number of operands.
  1188.      Make OPERANDS point to a vector of operand values.
  1189.      Make OPERAND_LOCS point to a vector of pointers to
  1190.      where the operands were found.
  1191.      Fill CONSTRAINTS and CONSTRAINTS1 with pointers to the
  1192.      constraint-strings for this insn.
  1193.      Return if the insn needs no reload processing.  */
  1194.  
  1195.   switch (GET_CODE (body))
  1196.     {
  1197.     case USE:
  1198.     case CLOBBER:
  1199.     case ASM_INPUT:
  1200.     case ADDR_VEC:
  1201.     case ADDR_DIFF_VEC:
  1202.       return;
  1203.  
  1204.     case SET:
  1205.       /* Dispose quickly of (set (reg..) (reg..)) if both have hard regs.  */
  1206.       if (GET_CODE (SET_DEST (body)) == REG
  1207.       && REGNO (SET_DEST (body)) < FIRST_PSEUDO_REGISTER
  1208.       && GET_CODE (SET_SRC (body)) == REG
  1209.       && REGNO (SET_SRC (body)) < FIRST_PSEUDO_REGISTER)
  1210.     return;
  1211.     case PARALLEL:
  1212.     case ASM_OPERANDS:
  1213.       noperands = asm_noperands (body);
  1214.       if (noperands >= 0)
  1215.     {
  1216.       /* This insn is an `asm' with operands.  */
  1217.  
  1218.       insn_code_number = -1;
  1219.  
  1220.       /* expand_asm_operands makes sure there aren't too many operands.  */
  1221.       if (noperands > MAX_RECOG_OPERANDS)
  1222.         abort ();
  1223.  
  1224.       /* Now get the operand values and constraints out of the insn.  */
  1225.  
  1226.       decode_asm_operands (body, recog_operand, recog_operand_loc,
  1227.                    constraints, operand_mode);
  1228.       if (noperands > 0)
  1229.         {
  1230.           bcopy (constraints, constraints1, noperands * sizeof (char *));
  1231.           n_alternatives = n_occurrences (',', constraints[0]) + 1;
  1232.           for (i = 1; i < noperands; i++)
  1233.         if (n_alternatives != n_occurrences (',', constraints[0]) + 1)
  1234.           {
  1235.             error_for_asm (insn, "operand constraints differ in number of alternatives");
  1236.             /* Avoid further trouble with this insn.  */
  1237.             PATTERN (insn) = gen_rtx (USE, VOIDmode, const0_rtx);
  1238.             n_reloads = 0;
  1239.             return;
  1240.           }
  1241.         }
  1242.       break;
  1243.     }
  1244.  
  1245.     default:
  1246.       /* Ordinary insn: recognize it, allocate space for operands and
  1247.      constraints, and get them out via insn_extract.  */
  1248.  
  1249.       insn_code_number = recog_memoized (insn);
  1250.       noperands = insn_n_operands[insn_code_number];
  1251.       n_alternatives = insn_n_alternatives[insn_code_number];
  1252.       /* Just return "no reloads" if insn has no operands with constraints.  */
  1253.       if (n_alternatives == 0)
  1254.     return;
  1255.       insn_extract (insn);
  1256.       for (i = 0; i < noperands; i++)
  1257.     {
  1258.       constraints[i] = constraints1[i]
  1259.         = insn_operand_constraint[insn_code_number][i];
  1260.       operand_mode[i] = insn_operand_mode[insn_code_number][i];
  1261.     }
  1262.     }
  1263.  
  1264.   if (noperands == 0)
  1265.     return;
  1266.  
  1267.   commutative = -1;
  1268.  
  1269.   /* If we will need to know, later, whether some pair of operands
  1270.      are the same, we must compare them now and save the result.
  1271.      Reloading the base and index registers will clobber them
  1272.      and afterward they will fail to match.  */
  1273.  
  1274.   for (i = 0; i < noperands; i++)
  1275.     {
  1276.       register char *p;
  1277.       register int c;
  1278.  
  1279.       substed_operand[i] = recog_operand[i];
  1280.       p = constraints[i];
  1281.  
  1282.       /* Scan this operand's constraint to see if it should match another.  */
  1283.  
  1284.       while (c = *p++)
  1285.     if (c == '%')
  1286.       commutative = i;
  1287.     else if (c >= '0' && c <= '9')
  1288.       {
  1289.         c -= '0';
  1290.         operands_match[c][i]
  1291.           = operands_match_p (recog_operand[c], recog_operand[i]);
  1292.         /* If C can be commuted with C+1, and C might need to match I,
  1293.            then C+1 might also need to match I.  */
  1294.         if (commutative >= 0)
  1295.           {
  1296.         if (c == commutative || c == commutative + 1)
  1297.           {
  1298.             int other = c + (c == commutative ? 1 : -1);
  1299.             operands_match[other][i]
  1300.               = operands_match_p (recog_operand[other], recog_operand[i]);
  1301.           }
  1302.         if (i == commutative || i == commutative + 1)
  1303.           {
  1304.             int other = i + (i == commutative ? 1 : -1);
  1305.             operands_match[c][other]
  1306.             = operands_match_p (recog_operand[c], recog_operand[other]);
  1307.           }
  1308.         /* Note that C is supposed to be less than I.
  1309.            No need to consider altering both C and I
  1310.            because in that case we would alter one into the other.  */
  1311.           }
  1312.       }
  1313.     }
  1314.  
  1315.   /* Examine each operand that is a memory reference or memory address
  1316.      and reload parts of the addresses into index registers.
  1317.      While we are at it, initialize the array `modified'.
  1318.      Also here any references to pseudo regs that didn't get hard regs
  1319.      but are equivalent to constants get replaced in the insn itself
  1320.      with those constants.  Nobody will ever see them again.  */
  1321.  
  1322.   for (i = 0; i < noperands; i++)
  1323.     {
  1324.       register RTX_CODE code = GET_CODE (recog_operand[i]);
  1325.       modified[i] = RELOAD_READ;
  1326.       address_reloaded[i] = 0;
  1327.       if (constraints[i][0] == 'p')
  1328.     {
  1329.       find_reloads_address (VOIDmode, 0,
  1330.                 recog_operand[i], recog_operand_loc[i],
  1331.                 recog_operand[i]);
  1332.       substed_operand[i] = recog_operand[i] = *recog_operand_loc[i];
  1333.     }
  1334.       else if (code == MEM)
  1335.     {
  1336.       if (find_reloads_address (GET_MODE (recog_operand[i]),
  1337.                     recog_operand_loc[i],
  1338.                     XEXP (recog_operand[i], 0),
  1339.                     &XEXP (recog_operand[i], 0),
  1340.                     recog_operand[i]))
  1341.         address_reloaded[i] = 1;
  1342.       substed_operand[i] = recog_operand[i] = *recog_operand_loc[i];
  1343.     }
  1344.       else if (code == SUBREG)
  1345.     substed_operand[i] = recog_operand[i] = *recog_operand_loc[i]
  1346.       = find_reloads_toplev (recog_operand[i]);
  1347.       else if (code == REG)
  1348.     {
  1349.       /* This is equivalent to calling find_reloads_toplev.
  1350.          The code is duplicated for speed.  */
  1351.       register int regno = REGNO (recog_operand[i]);
  1352.       if (reg_equiv_constant[regno] != 0)
  1353.         substed_operand[i] = recog_operand[i]
  1354.           = reg_equiv_constant[regno];
  1355. #if 0 /* This might screw code in reload1.c to delete prior output-reload
  1356.      that feeds this insn.  */
  1357.       if (reg_equiv_mem[regno] != 0)
  1358.         substed_operand[i] = recog_operand[i]
  1359.           = reg_equiv_mem[regno];
  1360. #endif
  1361.       if (reg_equiv_address[regno] != 0)
  1362.         {
  1363.           *recog_operand_loc[i] = recog_operand[i]
  1364.         = gen_rtx (MEM, GET_MODE (recog_operand[i]),
  1365.                reg_equiv_address[regno]);
  1366.           find_reloads_address (GET_MODE (recog_operand[i]),
  1367.                     recog_operand_loc[i],
  1368.                     XEXP (recog_operand[i], 0),
  1369.                     &XEXP (recog_operand[i], 0),
  1370.                     recog_operand[i]);
  1371.           substed_operand[i] = recog_operand[i] = *recog_operand_loc[i];
  1372.         }
  1373.     }
  1374.     }
  1375.  
  1376.   /* Now see what we need for pseudo-regs that didn't get hard regs
  1377.      or got the wrong kind of hard reg.  For this, we must consider
  1378.      all the operands together against the register constraints.  */
  1379.  
  1380.   best = MAX_RECOG_OPERANDS + 100;
  1381.  
  1382.   swapped = 0;
  1383.  try_swapped:
  1384.  
  1385.   /* The constraints are made of several alternatives.
  1386.      Each operand's constraint looks like foo,bar,... with commas
  1387.      separating the alternatives.  The first alternatives for all
  1388.      operands go together, the second alternatives go together, etc.
  1389.  
  1390.      First loop over alternatives.  */
  1391.  
  1392.   for (this_alternative_number = 0;
  1393.        this_alternative_number < n_alternatives;
  1394.        this_alternative_number++)
  1395.     {
  1396.       /* Loop over operands for one constraint alternative.  */
  1397.       /* LOSERS counts those that don't fit this alternative
  1398.      and would require loading.  */
  1399.       int losers = 0;
  1400.       /* BAD is set to 1 if it some operand can't fit this alternative
  1401.      even after reloading.  */
  1402.       int bad = 0;
  1403.       /* REJECT is a count of how undesirable this alternative says it is
  1404.      if any reloading is required.  If the alternative matches exactly
  1405.      then REJECT is ignored, but otherwise it gets this much
  1406.      counted against it in addition to the reloading needed.  */
  1407.       int reject = 0;
  1408.  
  1409.       this_earlyclobber = 0;
  1410.  
  1411.       for (i = 0; i < noperands; i++)
  1412.     {
  1413.       register char *p = constraints[i];
  1414.       register int win = 0;
  1415.       /* 0 => this operand can be reloaded somehow for this alternative */
  1416.       int badop = 1;
  1417.       /* 0 => this operand can be reloaded if the alternative allows regs.  */
  1418.       int winreg = 0;
  1419.       int c;
  1420.       register rtx operand = recog_operand[i];
  1421.       int offset = 0;
  1422.       /* Nonzero means this is a MEM that must be reloaded into a reg
  1423.          regardless of what the constraint says.  */
  1424.       int force_reload = 0;
  1425.       int offmemok = 0;
  1426.       int earlyclobber = 0;
  1427.  
  1428. #if defined( DSP56000 )
  1429.       /* the idea here is to keep meaningful subregs that are applied
  1430.          to accumulators from being used as arithmetic operands. the
  1431.          admissibility of these subregs is specifed on a per insn basis
  1432.          using the target machine info mechanism. */
  1433.  
  1434.       if ( SUBREG == GET_CODE ( operand ) &&
  1435.           ( REG != GET_CODE ( SUBREG_REG ( operand )) ||
  1436.            ( DImode != GET_MODE ( operand ) &&
  1437.         ( DSP56_A_REGNUM == REGNO ( SUBREG_REG ( operand )) ||
  1438.          DSP56_B_REGNUM == REGNO ( SUBREG_REG ( operand ))) &&
  1439.         DImode == GET_MODE ( SUBREG_REG ( operand )) &&
  1440.         ! insn_machine_info 
  1441.         [ INSN_CODE ( insn )].can_accept_subreg_acc_p )))
  1442.       {
  1443.           force_reload = 1;
  1444.       }
  1445. #endif
  1446.       /* If the operand is a SUBREG, extract
  1447.          the REG or MEM (or maybe even a constant) within.
  1448.          (Constants can occur as a result of reg_equiv_constant.)  */
  1449.  
  1450.       while (GET_CODE (operand) == SUBREG)
  1451.         {
  1452.           offset += SUBREG_WORD (operand);
  1453.           operand = SUBREG_REG (operand);
  1454.           if (GET_CODE (operand) != REG)
  1455.         force_reload = 1;
  1456.         }
  1457.  
  1458.       this_alternative[i] = (int) NO_REGS;
  1459.       this_alternative_win[i] = 0;
  1460.       this_alternative_offmemok[i] = 0;
  1461.       this_alternative_earlyclobber[i] = 0;
  1462.       this_alternative_matches[i] = -1;
  1463.  
  1464.       /* An empty constraint or empty alternative
  1465.          allows anything which matched the pattern.  */
  1466.       if (*p == 0 || *p == ',')
  1467.         win = 1, badop = 0;
  1468.  
  1469.       /* Scan this alternative's specs for this operand;
  1470.          set WIN if the operand fits any letter in this alternative.
  1471.          Otherwise, clear BADOP if this operand could
  1472.          fit some letter after reloads,
  1473.          or set WINREG if this operand could fit after reloads
  1474.          provided the constraint allows some registers.  */
  1475.  
  1476.       while (*p && (c = *p++) != ',')
  1477.         switch (c)
  1478.           {
  1479.           case '=':
  1480.         modified[i] = RELOAD_WRITE;
  1481.         break;
  1482.  
  1483.           case '+':
  1484.         modified[i] = RELOAD_READ_WRITE;
  1485.         break;
  1486.  
  1487.           case '*':
  1488.         break;
  1489.  
  1490.           case '%':
  1491.         commutative = i;
  1492.         break;
  1493.  
  1494.           case '?':
  1495.         reject++;
  1496.         break;
  1497.  
  1498.           case '!':
  1499.         reject = 100;
  1500.         break;
  1501.  
  1502.           case '#':
  1503.         /* Ignore rest of this alternative as far as
  1504.            reloading is concerned.  */
  1505.         while (*p && *p != ',') p++;
  1506.         break;
  1507.  
  1508.           case '0':
  1509.           case '1':
  1510.           case '2':
  1511.           case '3':
  1512.           case '4':
  1513.         c -= '0';
  1514.         this_alternative_matches[i] = c;
  1515.         /* We are supposed to match a previous operand.
  1516.            If we do, we win if that one did.
  1517.            If we do not, count both of the operands as losers.
  1518.            (This is too conservative, since most of the time
  1519.            only a single reload insn will be needed to make
  1520.            the two operands win.  As a result, this alternative
  1521.            may be rejected when it is actually desirable.)  */
  1522.         if ((swapped && (c != commutative || i != commutative + 1))
  1523.             /* If we are matching as if two operands were swapped,
  1524.                also pretend that operands_match had been computed
  1525.                with swapped.
  1526.                But if I is the second of those and C is the first,
  1527.                don't exchange them, because operands_match is valid
  1528.                only on one side of its diagonal.  */
  1529.             ? (operands_match
  1530.                 [(c == commutative || c == commutative + 1)
  1531.              ? 2*commutative + 1 - c : c]
  1532.                 [(i == commutative || i == commutative + 1)
  1533.              ? 2*commutative + 1 - i : i])
  1534.             : operands_match[c][i])
  1535.           win = this_alternative_win[c];
  1536.         else
  1537.           {
  1538.             /* Operands don't match.  */
  1539.             rtx value;
  1540.             /* Retroactively mark the operand we had to match
  1541.                as a loser, if it wasn't already.  */
  1542.             if (this_alternative_win[c])
  1543.               losers++;
  1544.             this_alternative_win[c] = 0;
  1545.             if (this_alternative[c] == (int) NO_REGS)
  1546.               bad = 1;
  1547.             /* But count the pair only once in the total badness of
  1548.                this alternative, if the pair can be a dummy reload.  */
  1549.             value
  1550.               = find_dummy_reload (recog_operand[i], recog_operand[c],
  1551.                        recog_operand_loc[i], recog_operand_loc[c],
  1552.                        this_alternative[c], -1);
  1553.  
  1554.             if (value != 0)
  1555.               losers--;
  1556.           }
  1557.         /* This can be fixed with reloads if the operand
  1558.            we are supposed to match can be fixed with reloads.  */
  1559.         badop = 0;
  1560.         this_alternative[i] = this_alternative[c];
  1561.         break;
  1562.  
  1563.           case 'p':
  1564.         /* All necessary reloads for an address_operand
  1565.            were handled in find_reloads_address.  */
  1566.         this_alternative[i] = (int) ALL_REGS;
  1567.         win = 1;
  1568.         break;
  1569.  
  1570.           case 'm':
  1571.         if (force_reload)
  1572.           break;
  1573.         if (GET_CODE (operand) == MEM
  1574.             || (GET_CODE (operand) == REG
  1575.             && REGNO (operand) >= FIRST_PSEUDO_REGISTER
  1576.             && reg_renumber[REGNO (operand)] < 0))
  1577.           win = 1;
  1578.         if (GET_CODE (operand) == CONST_DOUBLE
  1579.             || CONSTANT_P (operand))
  1580.           badop = 0;
  1581.         break;
  1582.  
  1583.           case '<':
  1584.         if (GET_CODE (operand) == MEM
  1585.             && ! address_reloaded[i]
  1586.             && (GET_CODE (XEXP (operand, 0)) == PRE_DEC
  1587.             || GET_CODE (XEXP (operand, 0)) == POST_DEC))
  1588.           win = 1;
  1589.         break;
  1590.  
  1591.           case '>':
  1592.         if (GET_CODE (operand) == MEM
  1593.             && ! address_reloaded[i]
  1594.             && (GET_CODE (XEXP (operand, 0)) == PRE_INC
  1595.             || GET_CODE (XEXP (operand, 0)) == POST_INC))
  1596.           win = 1;
  1597.         break;
  1598.  
  1599.         /* Memory operand whose address is offsettable.  */
  1600.           case 'o':
  1601.         if (force_reload)
  1602.           break;
  1603.         if ((GET_CODE (operand) == MEM
  1604.              && offsettable_memref_p (operand))
  1605.             /* Certain mem addresses will become offsettable
  1606.                after they themselves are reloaded.  This is important;
  1607.                we don't want our own handling of unoffsettables
  1608.                to override the handling of reg_equiv_address.  */
  1609.             || (GET_CODE (operand) == MEM
  1610.             && GET_CODE (XEXP (operand, 0)) == REG
  1611.             && (! ind_ok
  1612.                 || reg_equiv_address[REGNO (XEXP (operand, 0))] != 0))
  1613.             || (GET_CODE (operand) == REG
  1614.             && REGNO (operand) >= FIRST_PSEUDO_REGISTER
  1615.             && reg_renumber[REGNO (operand)] < 0))
  1616.           win = 1;
  1617.         if (GET_CODE (operand) == CONST_DOUBLE
  1618.             || CONSTANT_P (operand)
  1619.             || GET_CODE (operand) == MEM)
  1620.           badop = 0;
  1621.         offmemok = 1;
  1622.         break;
  1623.  
  1624.           case '&':
  1625.         /* Output operand that is stored before the need for the
  1626.            input operands (and their index registers) is over.  */
  1627.         if (GET_CODE (operand) == REG
  1628.             || GET_CODE (operand) == MEM)
  1629.           earlyclobber = 1, this_earlyclobber = 1;
  1630.         break;
  1631.  
  1632.           case 'F':
  1633.         if (GET_CODE (operand) == CONST_DOUBLE)
  1634.           win = 1;
  1635.         break;
  1636.  
  1637.           case 'G':
  1638.           case 'H':
  1639.         if (GET_CODE (operand) == CONST_DOUBLE
  1640.             && CONST_DOUBLE_OK_FOR_LETTER_P (operand, c))
  1641.           win = 1;
  1642.         break;
  1643.  
  1644.           case 's':
  1645.         if (GET_CODE (operand) == CONST_INT)
  1646.           break;
  1647.           case 'i':
  1648.         if (CONSTANT_P (operand))
  1649.           win = 1;
  1650.         break;
  1651.  
  1652.           case 'n':
  1653.         if (GET_CODE (operand) == CONST_INT)
  1654.           win = 1;
  1655.         break;
  1656.  
  1657.           case 'I':
  1658.           case 'J':
  1659.           case 'K':
  1660.           case 'L':
  1661.           case 'M':
  1662.         if (GET_CODE (operand) == CONST_INT
  1663.             && CONST_OK_FOR_LETTER_P (INTVAL (operand), c))
  1664.           win = 1;
  1665.         break;
  1666.  
  1667.           case 'g':
  1668.         if (! force_reload
  1669.             && (GENERAL_REGS == ALL_REGS
  1670.             || GET_CODE (operand) != REG
  1671.             || (REGNO (operand) >= FIRST_PSEUDO_REGISTER
  1672.                 && reg_renumber[REGNO (operand)] < 0)))
  1673.           win = 1;
  1674.         /* Drop through into 'r' case */
  1675.  
  1676.           case 'r':
  1677.         this_alternative[i]
  1678.           = (int) reg_class_subunion[this_alternative[i]][(int) GENERAL_REGS];
  1679.         goto reg;
  1680.  
  1681.           default:
  1682.         this_alternative[i]
  1683.           = (int) reg_class_subunion[this_alternative[i]][(int) REG_CLASS_FROM_LETTER (c)];
  1684.         
  1685.           reg:
  1686.         winreg = 1;
  1687.         if (GET_CODE (operand) == REG
  1688. #if defined( DSP56000 )
  1689.             && reg_fits_class_p (operand, REG_CLASS_FROM_LETTER (c),
  1690. #else
  1691.             && reg_fits_class_p (operand, this_alternative[i],
  1692. #endif
  1693.                      offset, GET_MODE (recog_operand[i])))
  1694.           win = 1;
  1695.         break;
  1696.           }
  1697.  
  1698.       constraints[i] = p;
  1699.  
  1700.       /* If this operand could be handled with a reg,
  1701.          and some reg is allowed, then this operand can be handled.  */
  1702.       if (winreg && this_alternative[i] != (int) NO_REGS)
  1703.         badop = 0;
  1704.  
  1705.       /* Record which operands fit this alternative.  */
  1706.       this_alternative_earlyclobber[i] = earlyclobber;
  1707.       if (win && ! force_reload)
  1708.         this_alternative_win[i] = 1;
  1709.       else
  1710.         {
  1711.           this_alternative_offmemok[i] = offmemok;
  1712.           losers++;
  1713.           if (badop)
  1714.         bad = 1;
  1715.           /* Alternative loses if it has no regs for a reg operand.  */
  1716.           if (GET_CODE (operand) == REG
  1717.           && this_alternative[i] == (int) NO_REGS
  1718.           && this_alternative_matches[i] < 0)
  1719.         bad = 1;
  1720.         }
  1721.     }
  1722.  
  1723.       /* Now see if any output operands that are marked "earlyclobber"
  1724.      in this alternative conflict with any input operands
  1725.      or any memory addresses.  */
  1726.  
  1727.       for (i = 0; i < noperands; i++)
  1728.     if (this_alternative_earlyclobber[i]
  1729.         && this_alternative_win[i])
  1730.       {
  1731.         struct decomposition early_data; 
  1732.         int j;
  1733.  
  1734.         early_data = decompose (recog_operand[i]);
  1735.  
  1736.         for (j = 0; j < noperands; j++)
  1737.           /* Is this an input operand or a memory ref?  */
  1738.           if ((GET_CODE (recog_operand[j]) == MEM
  1739.            || modified[j] != RELOAD_WRITE)
  1740.           && j != i
  1741.           /* Don't count an input operand that is constrained to match
  1742.              the early clobber operand.  */
  1743.           && ! (this_alternative_matches[j] == i
  1744.             && rtx_equal_p (recog_operand[i], recog_operand[j]))
  1745.           /* Is it altered by storing the earlyclobber operand?  */
  1746.           && !immune_p (recog_operand[j], recog_operand[i], early_data))
  1747.         {
  1748.           /* If the output is in a single-reg class,
  1749.              it's costly to reload it, so reload the input instead.  */
  1750.           if (reg_class_size[this_alternative[i]] == 1
  1751.               && (GET_CODE (recog_operand[j]) == REG
  1752.               || GET_CODE (recog_operand[j]) == SUBREG))
  1753.             {
  1754.               losers++;
  1755.               this_alternative_win[j] = 0;
  1756.             }
  1757.           else
  1758.             break;
  1759.         }
  1760.         /* If an earlyclobber operand conflicts with something,
  1761.            it must be reloaded, so request this and count the cost.  */
  1762.         if (j != noperands)
  1763.           {
  1764.         losers++;
  1765.         this_alternative_win[i] = 0;
  1766.         for (j = 0; j < noperands; j++)
  1767.           if (this_alternative_matches[j] == i
  1768.               && this_alternative_win[j])
  1769.             {
  1770.               this_alternative_win[j] = 0;
  1771.               losers++;
  1772.             }
  1773.           }
  1774.       }
  1775.  
  1776.       /* If one alternative accepts all the operands, no reload required,
  1777.      choose that alternative; don't consider the remaining ones.  */
  1778.       if (losers == 0)
  1779.     {
  1780.       /* Unswap these so that they are never swapped at `finish'.  */
  1781.       if (commutative >= 0)
  1782.         {
  1783.           recog_operand[commutative] = substed_operand[commutative];
  1784.           recog_operand[commutative + 1]
  1785.         = substed_operand[commutative + 1];
  1786.         }
  1787.       for (i = 0; i < noperands; i++)
  1788.         {
  1789.           goal_alternative_win[i] = 1;
  1790.           goal_alternative[i] = this_alternative[i];
  1791.           goal_alternative_offmemok[i] = this_alternative_offmemok[i];
  1792.           goal_alternative_matches[i] = this_alternative_matches[i];
  1793.           goal_alternative_earlyclobber[i]
  1794.         = this_alternative_earlyclobber[i];
  1795.         }
  1796.       goal_alternative_number = this_alternative_number;
  1797.       goal_alternative_swapped = swapped;
  1798.       goal_earlyclobber = this_earlyclobber;
  1799.       goto finish;
  1800.     }
  1801.  
  1802.       /* REJECT, set by the ! and ? constraint characters,
  1803.      discourages the use of this alternative for a reload goal.  */
  1804.       if (reject > 0)
  1805.     losers += reject;
  1806.  
  1807.       /* If this alternative can be made to work by reloading,
  1808.      and it needs less reloading than the others checked so far,
  1809.      record it as the chosen goal for reloading.  */
  1810.       if (! bad && best > losers)
  1811.     {
  1812.       for (i = 0; i < noperands; i++)
  1813.         {
  1814.           goal_alternative[i] = this_alternative[i];
  1815.           goal_alternative_win[i] = this_alternative_win[i];
  1816.           goal_alternative_offmemok[i] = this_alternative_offmemok[i];
  1817.           goal_alternative_matches[i] = this_alternative_matches[i];
  1818.           goal_alternative_earlyclobber[i]
  1819.         = this_alternative_earlyclobber[i];
  1820.         }
  1821.       goal_alternative_swapped = swapped;
  1822.       best = losers;
  1823.       goal_alternative_number = this_alternative_number;
  1824.       goal_earlyclobber = this_earlyclobber;
  1825.     }
  1826.     }
  1827.  
  1828.   /* If insn is commutative (it's safe to exchange a certain pair of operands)
  1829.      then we need to try each alternative twice,
  1830.      the second time matching those two operands
  1831.      as if we had exchanged them.
  1832.      To do this, really exchange them in operands.
  1833.  
  1834.      If we have just tried the alternatives the second time,
  1835.      return operands to normal and drop through.  */
  1836.  
  1837.   if (commutative >= 0)
  1838.     {
  1839.       swapped = !swapped;
  1840.       if (swapped)
  1841.     {
  1842.       recog_operand[commutative] = substed_operand[commutative + 1];
  1843.       recog_operand[commutative + 1] = substed_operand[commutative];
  1844.  
  1845.       bcopy (constraints1, constraints, noperands * sizeof (char *));
  1846.       goto try_swapped;
  1847.     }
  1848.       else
  1849.     {
  1850.       recog_operand[commutative] = substed_operand[commutative];
  1851.       recog_operand[commutative + 1] = substed_operand[commutative + 1];
  1852.     }
  1853.     }
  1854.  
  1855.   /* The operands don't meet the constraints.
  1856.      goal_alternative describes the alternative
  1857.      that we could reach by reloading the fewest operands.
  1858.      Reload so as to fit it.  */
  1859.  
  1860.   if (best == MAX_RECOG_OPERANDS + 100)
  1861.     {
  1862.       /* No alternative works with reloads??  */
  1863.       if (insn_code_number >= 0)
  1864.     abort ();
  1865.       error_for_asm (insn, "inconsistent operand constraints in an `asm'");
  1866.       /* Avoid further trouble with this insn.  */
  1867.       PATTERN (insn) = gen_rtx (USE, VOIDmode, const0_rtx);
  1868.       n_reloads = 0;
  1869.       return;
  1870.     }
  1871.  
  1872.   /* Jump to `finish' from above if all operands are valid already.
  1873.      In that case, goal_alternative_win is all 1.  */
  1874.  finish:
  1875.  
  1876.   /* Right now, for any pair of operands I and J that are required to match,
  1877.      with I < J,
  1878.      goal_alternative_matches[J] is I.
  1879.      Set up goal_alternative_matched as the inverse function:
  1880.      goal_alternative_matched[I] = J.  */
  1881.  
  1882.   for (i = 0; i < noperands; i++)
  1883.     goal_alternative_matched[i] = -1;
  1884.  
  1885.   for (i = 0; i < noperands; i++)
  1886.     if (! goal_alternative_win[i]
  1887.     && goal_alternative_matches[i] >= 0)
  1888.       goal_alternative_matched[goal_alternative_matches[i]] = i;
  1889.  
  1890.   /* If the best alternative is with operands 1 and 2 swapped,
  1891.      consider them swapped before reporting the reloads.  */
  1892.  
  1893.   if (goal_alternative_swapped)
  1894.     {
  1895.       register rtx tem;
  1896.  
  1897.       tem = substed_operand[commutative];
  1898.       substed_operand[commutative] = substed_operand[commutative + 1];
  1899.       substed_operand[commutative + 1] = tem;
  1900.       tem = recog_operand[commutative];
  1901.       recog_operand[commutative] = recog_operand[commutative + 1];
  1902.       recog_operand[commutative + 1] = tem;
  1903.     }
  1904.  
  1905.   /* Perform whatever substitutions on the operands we are supposed
  1906.      to make due to commutativity or replacement of registers
  1907.      with equivalent constants or memory slots.  */
  1908.  
  1909.   for (i = 0; i < noperands; i++)
  1910.     {
  1911.       *recog_operand_loc[i] = substed_operand[i];
  1912.       /* While we are looping on operands, initialize this.  */
  1913.       operand_reloadnum[i] = -1;
  1914.     }
  1915.  
  1916.   /* Any constants that aren't allowed and can't be reloaded
  1917.      into memory locations are here changed into memory references.  */
  1918.   for (i = 0; i < noperands; i++)
  1919.     if (! goal_alternative_win[i]
  1920.     && (GET_CODE (recog_operand[i]) == CONST_DOUBLE
  1921.         || CONSTANT_P (recog_operand[i]))
  1922.     && (PREFERRED_RELOAD_CLASS (recog_operand[i],
  1923.                     (enum reg_class) goal_alternative[i])
  1924.         == NO_REGS))
  1925.       {
  1926.     enum machine_mode mode = operand_mode[i];
  1927.     *recog_operand_loc[i] = recog_operand[i]
  1928.       = (GET_CODE (recog_operand[i]) == CONST_DOUBLE
  1929.          ? force_const_double_mem (recog_operand[i])
  1930.          : force_const_mem (mode != VOIDmode ? mode : SImode,
  1931.                 recog_operand[i]));
  1932.     find_reloads_toplev (recog_operand[i]);
  1933.     if (alternative_allows_memconst (constraints1[i], goal_alternative_number))
  1934.       goal_alternative_win[i] = 1;
  1935.       }
  1936.  
  1937.   /* Now record reloads for all the operands that need them.  */
  1938.   for (i = 0; i < noperands; i++)
  1939.     if (! goal_alternative_win[i])
  1940.       {
  1941.     /* Operands that match previous ones have already been handled.  */
  1942.     if (goal_alternative_matches[i] >= 0)
  1943.       ;
  1944.     /* Handle an operand with a nonoffsettable address
  1945.        appearing where an offsettable address will do
  1946.        by reloading the address into a base register.  */
  1947.     else if (goal_alternative_matched[i] == -1
  1948.          && goal_alternative_offmemok[i]
  1949.          && GET_CODE (recog_operand[i]) == MEM)
  1950.       {
  1951.         operand_reloadnum[i]
  1952.           = push_reload (XEXP (recog_operand[i], 0), 0,
  1953.                  &XEXP (recog_operand[i], 0), 0,
  1954.                  BASE_REG_CLASS, GET_MODE (XEXP (recog_operand[i], 0)),
  1955.                  0, 0, 0, 0);
  1956.         reload_inc[operand_reloadnum[i]]
  1957.           = GET_MODE_SIZE (GET_MODE (recog_operand[i]));
  1958.       }
  1959.     else if (goal_alternative_matched[i] == -1)
  1960.       operand_reloadnum[i] =
  1961.         push_reload (modified[i] != RELOAD_WRITE ? recog_operand[i] : 0,
  1962.              modified[i] != RELOAD_READ ? recog_operand[i] : 0,
  1963.              recog_operand_loc[i], 0,
  1964.              (enum reg_class) goal_alternative[i],
  1965.              (modified[i] == RELOAD_WRITE ? VOIDmode : operand_mode[i]),
  1966.              (modified[i] == RELOAD_READ ? VOIDmode : operand_mode[i]),
  1967.              (insn_code_number < 0 ? 0
  1968.               : insn_operand_strict_low[insn_code_number][i]),
  1969.              0, 0);
  1970.     /* In a matching pair of operands, one must be input only
  1971.        and the other must be output only.
  1972.        Pass the input operand as IN and the other as OUT.  */
  1973.     else if (modified[i] == RELOAD_READ
  1974.          && modified[goal_alternative_matched[i]] == RELOAD_WRITE)
  1975.       {
  1976.         operand_reloadnum[i]
  1977.           = push_reload (recog_operand[i],
  1978.                  recog_operand[goal_alternative_matched[i]],
  1979.                  recog_operand_loc[i],
  1980.                  recog_operand_loc[goal_alternative_matched[i]],
  1981.                  (enum reg_class) goal_alternative[i],
  1982.                  operand_mode[i],
  1983.                  operand_mode[goal_alternative_matched[i]],
  1984.                  VOIDmode, 0, 0);
  1985.         operand_reloadnum[goal_alternative_matched[i]] = output_reloadnum;
  1986.       }
  1987.     else if (modified[i] == RELOAD_WRITE
  1988.          && modified[goal_alternative_matched[i]] == RELOAD_READ)
  1989.       {
  1990.         operand_reloadnum[goal_alternative_matched[i]]
  1991.           = push_reload (recog_operand[goal_alternative_matched[i]],
  1992.                  recog_operand[i],
  1993.                  recog_operand_loc[goal_alternative_matched[i]],
  1994.                  recog_operand_loc[i],
  1995.                  (enum reg_class) goal_alternative[i],
  1996.                  operand_mode[goal_alternative_matched[i]],
  1997.                  operand_mode[i],
  1998.                  VOIDmode, 0, 0);
  1999.         operand_reloadnum[i] = output_reloadnum;
  2000.       }
  2001.     else if (insn_code_number >= 0)
  2002.       abort ();
  2003.     else
  2004.       {
  2005.         error_for_asm (insn, "inconsistent operand constraints in an `asm'");
  2006.         /* Avoid further trouble with this insn.  */
  2007.         PATTERN (insn) = gen_rtx (USE, VOIDmode, const0_rtx);
  2008.         n_reloads = 0;
  2009.         return;
  2010.       }
  2011.       }
  2012.     else if (goal_alternative_matched[i] < 0
  2013.          && goal_alternative_matches[i] < 0
  2014.          && optimize)
  2015.       {
  2016.     rtx operand = recog_operand[i];
  2017.     /* For each non-matching operand that's a pseudo-register 
  2018.        that didn't get a hard register, make an optional reload.
  2019.        This may get done even if the insn needs no reloads otherwise.  */
  2020.     /* (It would be safe to make an optional reload for a matching pair
  2021.        of operands, but we don't bother yet.)  */
  2022.     while (GET_CODE (operand) == SUBREG)
  2023.       operand = XEXP (operand, 0);
  2024.     if (GET_CODE (operand) == REG
  2025.         && REGNO (operand) >= FIRST_PSEUDO_REGISTER
  2026.         && reg_renumber[REGNO (operand)] < 0
  2027.         && (enum reg_class) goal_alternative[i] != NO_REGS
  2028.         /* Don't make optional output reloads for jump insns
  2029.            (such as aobjeq on the vax).  */
  2030.         && (modified[i] == RELOAD_READ
  2031.         || GET_CODE (insn) != JUMP_INSN))
  2032.       operand_reloadnum[i]
  2033.         = push_reload (modified[i] != RELOAD_WRITE ? recog_operand[i] : 0,
  2034.                modified[i] != RELOAD_READ ? recog_operand[i] : 0,
  2035.                recog_operand_loc[i], 0,
  2036.                (enum reg_class) goal_alternative[i],
  2037.                (modified[i] == RELOAD_WRITE ? VOIDmode : operand_mode[i]),
  2038.                (modified[i] == RELOAD_READ ? VOIDmode : operand_mode[i]),
  2039.                (insn_code_number < 0 ? 0
  2040.                 : insn_operand_strict_low[insn_code_number][i]),
  2041.                1, 0);
  2042.     /* Make an optional reload for an explicit mem ref.  */
  2043.     else if (GET_CODE (operand) == MEM
  2044.          && (enum reg_class) goal_alternative[i] != NO_REGS
  2045.          /* Don't make optional output reloads for jump insns
  2046.             (such as aobjeq on the vax).  */
  2047.          && (modified[i] == RELOAD_READ
  2048.              || GET_CODE (insn) != JUMP_INSN))
  2049.       operand_reloadnum[i]
  2050.         = push_reload (modified[i] != RELOAD_WRITE ? recog_operand[i] : 0,
  2051.                modified[i] != RELOAD_READ ? recog_operand[i] : 0,
  2052.                recog_operand_loc[i], 0,
  2053.                (enum reg_class) goal_alternative[i],
  2054.                (modified[i] == RELOAD_WRITE ? VOIDmode : operand_mode[i]),
  2055.                (modified[i] == RELOAD_READ ? VOIDmode : operand_mode[i]),
  2056.                (insn_code_number < 0 ? 0
  2057.                 : insn_operand_strict_low[insn_code_number][i]),
  2058.                1, 0);
  2059.       }
  2060.  
  2061.   /* Record the values of the earlyclobber operands for the caller.  */
  2062.   if (goal_earlyclobber)
  2063.     for (i = 0; i < noperands; i++)
  2064.       if (goal_alternative_earlyclobber[i])
  2065.     reload_earlyclobbers[n_earlyclobbers++] = recog_operand[i];
  2066.  
  2067.   /* If this insn pattern contains any MATCH_DUP's, make sure that
  2068.      they will be substituted if the operands they match are substituted.
  2069.      Also do now any substitutions we already did on the operands.  */
  2070.   if (insn_code_number >= 0)
  2071.     for (i = insn_n_dups[insn_code_number] - 1; i >= 0; i--)
  2072.       {
  2073.     int opno = recog_dup_num[i];
  2074.     *recog_dup_loc[i] = *recog_operand_loc[opno];
  2075.     if (operand_reloadnum[opno] >= 0)
  2076.       push_replacement (recog_dup_loc[i], operand_reloadnum[opno],
  2077.                 insn_operand_mode[insn_code_number][opno]);
  2078.       }
  2079.  
  2080. #if 0
  2081.   /* This loses because reloading of prior insns can invalidate the equivalence
  2082.      (or at least find_equiv_reg isn't smart enough to find it any more),
  2083.      causing this insn to need more reload regs than it needed before.
  2084.      It may be too late to make the reload regs available.
  2085.      Now this optimization is done safely in choose_reload_targets.  */
  2086.  
  2087.   /* For each reload of a reg into some other class of reg,
  2088.      search for an existing equivalent reg (same value now) in the right class.
  2089.      We can use it as long as we don't need to change its contents.  */
  2090.   for (i = 0; i < n_reloads; i++)
  2091.     if (reload_reg_rtx[i] == 0
  2092.     && reload_in[i] != 0
  2093.     && GET_CODE (reload_in[i]) == REG
  2094.     && reload_out[i] == 0)
  2095.       {
  2096.     reload_reg_rtx[i]
  2097.       = find_equiv_reg (reload_in[i], insn, reload_reg_class[i], -1,
  2098.                 static_reload_reg_p, 0, reload_inmode[i]);
  2099.     /* Prevent generation of insn to load the value
  2100.        because the one we found already has the value.  */
  2101.     if (reload_reg_rtx[i])
  2102.       reload_in[i] = reload_reg_rtx[i];
  2103.       }
  2104. #endif
  2105.  
  2106. #else /* no REGISTER_CONSTRAINTS */
  2107.   int noperands;
  2108.   int insn_code_number;
  2109.   int goal_earlyclobber = 0; /* Always 0, to make combine_reloads happen.  */
  2110.   register int i;
  2111.   rtx body = PATTERN (insn);
  2112.  
  2113.   n_reloads = 0;
  2114.   n_replacements = 0;
  2115.   n_earlyclobbers = 0;
  2116.   replace_reloads = replace;
  2117.   indirect_ok = ind_ok;
  2118.   this_insn = insn;
  2119.  
  2120.   /* Find what kind of insn this is.  NOPERANDS gets number of operands.
  2121.      Store the operand values in RECOG_OPERAND and the locations
  2122.      of the words in the insn that point to them in RECOG_OPERAND_LOC.
  2123.      Return if the insn needs no reload processing.  */
  2124.  
  2125.   switch (GET_CODE (body))
  2126.     {
  2127.     case USE:
  2128.     case CLOBBER:
  2129.     case ASM_INPUT:
  2130.     case ADDR_VEC:
  2131.     case ADDR_DIFF_VEC:
  2132.       return;
  2133.  
  2134.     case PARALLEL:
  2135.     case SET:
  2136.       noperands = asm_noperands (body);
  2137.       if (noperands >= 0)
  2138.     {
  2139.       /* This insn is an `asm' with operands.
  2140.          First, find out how many operands, and allocate space.  */
  2141.  
  2142.       insn_code_number = -1;
  2143.       /* ??? This is a bug! ???
  2144.          Give up and delete this insn if it has too many operands.  */
  2145.       if (noperands > MAX_RECOG_OPERANDS)
  2146.         abort ();
  2147.  
  2148.       /* Now get the operand values out of the insn.  */
  2149.  
  2150.       decode_asm_operands (body, recog_operand, recog_operand_loc, 0, 0);
  2151.       break;
  2152.     }
  2153.  
  2154.     default:
  2155.       /* Ordinary insn: recognize it, allocate space for operands and
  2156.      constraints, and get them out via insn_extract.  */
  2157.  
  2158.       insn_code_number = recog_memoized (insn);
  2159.       noperands = insn_n_operands[insn_code_number];
  2160.       insn_extract (insn);
  2161.     }
  2162.  
  2163.   if (noperands == 0)
  2164.     return;
  2165.  
  2166.   for (i = 0; i < noperands; i++)
  2167.     {
  2168.       register RTX_CODE code = GET_CODE (recog_operand[i]);
  2169.  
  2170.       if (insn_code_number >= 0)
  2171.     if (insn_operand_address_p[insn_code_number][i])
  2172.       find_reloads_address (VOIDmode, 0,
  2173.                 recog_operand[i], recog_operand_loc[i],
  2174.                 recog_operand[i]);
  2175.       if (code == MEM)
  2176.     find_reloads_address (GET_MODE (recog_operand[i]),
  2177.                   recog_operand_loc[i],
  2178.                   XEXP (recog_operand[i], 0),
  2179.                   &XEXP (recog_operand[i], 0),
  2180.                   recog_operand[i]);
  2181.       if (code == SUBREG)
  2182.     recog_operand[i] = *recog_operand_loc[i]
  2183.       = find_reloads_toplev (recog_operand[i]);
  2184.       if (code == REG)
  2185.     {
  2186.       register int regno = REGNO (recog_operand[i]);
  2187.       if (reg_equiv_constant[regno] != 0)
  2188.         recog_operand[i] = *recog_operand_loc[i]
  2189.           = reg_equiv_constant[regno];
  2190. #if 0 /* This might screw code in reload1.c to delete prior output-reload
  2191.      that feeds this insn.  */
  2192.       if (reg_equiv_mem[regno] != 0)
  2193.         recog_operand[i] = *recog_operand_loc[i]
  2194.           = reg_equiv_mem[regno];
  2195. #endif
  2196.     }
  2197.     }
  2198. #endif /* no REGISTER_CONSTRAINTS */
  2199.  
  2200.   /* Determine which part of the insn each reload is needed for,
  2201.      based on which operand the reload is needed for.
  2202.      Reloads of entire operands are classified as RELOAD_OTHER.
  2203.      So are reloads for which a unique purpose is not known.  */
  2204.  
  2205.   for (i = 0; i < n_reloads; i++)
  2206.     {
  2207.       reload_when_needed[i] = RELOAD_OTHER;
  2208.  
  2209.       if (reload_needed_for[i] != 0 && ! reload_needed_for_multiple[i])
  2210.     {
  2211.       int j;
  2212.       int output_address = 0;
  2213.       int input_address = 0;
  2214.       int operand_address = 0;
  2215.  
  2216.       /* This reload is needed only for the address of something.
  2217.          Determine whether it is needed for addressing an operand
  2218.          being reloaded for input, whether it is needed for an
  2219.          operand being reloaded for output, and whether it is needed
  2220.          for addressing an operand that won't really be reloaded.  */
  2221.  
  2222.       for (j = 0; j < n_reloads; j++)
  2223.         if (reload_needed_for[i] == reload_in[j]
  2224.         || reload_needed_for[i] == reload_out[j])
  2225.           {
  2226.         if (reload_optional[j])
  2227.           operand_address = 1;
  2228.         else
  2229.           {
  2230.             if (reload_needed_for[i] == reload_in[j])
  2231.               input_address = 1;
  2232.             if (reload_needed_for[i] == reload_out[j])
  2233.               output_address = 1;
  2234.           }
  2235.           }
  2236.  
  2237.       /* If it is needed for only one of those, record which one.  */
  2238.  
  2239.       if (input_address && ! output_address && ! operand_address)
  2240.         reload_when_needed[i] = RELOAD_FOR_INPUT_RELOAD_ADDRESS;
  2241.       if (output_address && ! input_address && ! operand_address)
  2242.         reload_when_needed[i] = RELOAD_FOR_OUTPUT_RELOAD_ADDRESS;
  2243.       if (operand_address && ! input_address && ! output_address)
  2244.         reload_when_needed[i] = RELOAD_FOR_OPERAND_ADDRESS;
  2245.     }
  2246.     }
  2247.  
  2248.   /* Perhaps an output reload can be combined with another
  2249.      to reduce needs by one.  */
  2250.   if (!goal_earlyclobber)
  2251.     combine_reloads ();
  2252. }
  2253.  
  2254. /* Return 1 if alternative number ALTNUM in constraint-string CONSTRAINT
  2255.    accepts a memory operand with constant address.  */
  2256.  
  2257. static int
  2258. alternative_allows_memconst (constraint, altnum)
  2259.      char *constraint;
  2260.      int altnum;
  2261. {
  2262.   register int c;
  2263.   /* Skip alternatives before the one requested.  */
  2264.   while (altnum > 0)
  2265.     {
  2266.       while (*constraint++ != ',');
  2267.       altnum--;
  2268.     }
  2269.   /* Scan the requested alternative for 'm' or 'o'.
  2270.      If one of them is present, this alternative accepts memory constants.  */
  2271.   while ((c = *constraint++) && c != ',' && c != '#')
  2272.     if (c == 'm' || c == 'o')
  2273.       return 1;
  2274.   return 0;
  2275. }
  2276.  
  2277. /* Scan X for memory references and scan the addresses for reloading.
  2278.    Also checks for references to "constant" regs that we want to eliminate
  2279.    and replaces them with the values they stand for.
  2280.    We may alter X descructively if it contains a reference to such.
  2281.    If X is just a constant reg, we return the equivalent value
  2282.    instead of X.  */
  2283.  
  2284. static rtx
  2285. find_reloads_toplev (x)
  2286.      rtx x;
  2287. {
  2288.   register RTX_CODE code = GET_CODE (x);
  2289.  
  2290.   register char *fmt = GET_RTX_FORMAT (code);
  2291.   register int i;
  2292.  
  2293.   if (code == REG)
  2294.     {
  2295.       /* This code is duplicated for speed in find_reloads.  */
  2296.       register int regno = REGNO (x);
  2297.       if (reg_equiv_constant[regno] != 0)
  2298.     x = reg_equiv_constant[regno];
  2299. #if 0
  2300. /*  This creates (subreg (mem...)) which would cause an unnecessary
  2301.     reload of the mem.  */
  2302.       else if (reg_equiv_mem[regno] != 0)
  2303.     x = reg_equiv_mem[regno];
  2304. #endif
  2305.       else if (reg_equiv_address[regno] != 0)
  2306.     {
  2307.       x = gen_rtx (MEM, GET_MODE (x),
  2308.                reg_equiv_address[regno]);
  2309.       find_reloads_address (GET_MODE (x), 0,
  2310.                 XEXP (x, 0),
  2311.                 &XEXP (x, 0), x);
  2312.     }
  2313.       return x;
  2314.     }
  2315.   if (code == MEM)
  2316.     {
  2317.       rtx tem = x;
  2318.       find_reloads_address (GET_MODE (x), &tem, XEXP (x, 0), &XEXP (x, 0), x);
  2319.       return tem;
  2320.     }
  2321.  
  2322.   if (code == SUBREG && GET_CODE (SUBREG_REG (x)) == REG)
  2323.     {
  2324.       /* Check for SUBREG containing a REG that's equivalent to a constant.  */
  2325.       register int regno = REGNO (SUBREG_REG (x));
  2326.       if (regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
  2327.       && reg_equiv_constant[regno] != 0)
  2328.     {
  2329.       /* If the constant has a known value, truncate it right now.  */
  2330.       if (GET_CODE (reg_equiv_constant[regno]) == CONST_INT)
  2331.         {
  2332.           int size = GET_MODE_BITSIZE (GET_MODE (x));
  2333.           if (size < BITS_PER_WORD)
  2334.         return gen_rtx (CONST_INT, VOIDmode,
  2335.                 INTVAL (reg_equiv_constant[regno])
  2336.                 & ((1 << size) - 1));
  2337.           return reg_equiv_constant[regno];
  2338.         }
  2339.       /* If the constant is symbolic, allow it to be substituted normally.
  2340.          push_reload will strip the subreg later.  */
  2341.     }
  2342.       /* If the subreg contains a reg that will be converted to a mem,
  2343.      convert the subreg to a narrower memref now.
  2344.      Otherwise, we would get (subreg (mem ...) ...),
  2345.      which would force reload of the mem.  */
  2346.       else if (regno >= FIRST_PSEUDO_REGISTER && reg_equiv_address[regno] != 0)
  2347.     {
  2348.       int offset = SUBREG_WORD (x) * UNITS_PER_WORD;
  2349.       rtx addr;
  2350. #ifdef BYTES_BIG_ENDIAN
  2351.       offset += (GET_MODE_SIZE (GET_MODE (SUBREG_REG (x)))
  2352.              - GET_MODE_SIZE (GET_MODE (x)));
  2353. #endif
  2354.       addr = plus_constant (reg_equiv_address[regno], offset);
  2355.       x = gen_rtx (MEM, GET_MODE (x), addr);
  2356.       find_reloads_address (GET_MODE (x), 0,
  2357.                 XEXP (x, 0),
  2358.                 &XEXP (x, 0), x);
  2359.     }
  2360.  
  2361.     }
  2362.  
  2363.   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
  2364.     {
  2365.       if (fmt[i] == 'e')
  2366.     XEXP (x, i) = find_reloads_toplev (XEXP (x, i));
  2367.     }
  2368.   return x;
  2369. }
  2370.  
  2371. static rtx
  2372. make_memloc (ad, regno)
  2373.      rtx ad;
  2374.      int regno;
  2375. {
  2376.   register int i;
  2377.   rtx tem = reg_equiv_address[regno];
  2378.   for (i = 0; i < n_memlocs; i++)
  2379.     if (rtx_equal_p (tem, XEXP (memlocs[i], 0)))
  2380.       return memlocs[i];
  2381.   tem = gen_rtx (MEM, GET_MODE (ad), tem);
  2382.   memlocs[n_memlocs++] = tem;
  2383.   return tem;
  2384. }
  2385.  
  2386. /* Record all reloads needed for handling memory address AD
  2387.    which appears in *LOC in a memory reference to mode MODE
  2388.    which itself is found in location  *MEMREFLOC.
  2389.    Note that we take shortcuts assuming that no multi-reg machine mode
  2390.    occurs as part of an address.
  2391.  
  2392.    OPERAND is the operand of the insn within which this address appears.
  2393.  
  2394.    Value is nonzero if this address is reloaded or replaced as a whole.
  2395.    This is interesting to the caller if the address is an autoincrement.  */
  2396.  
  2397. static int
  2398. find_reloads_address (mode, memrefloc, ad, loc, operand)
  2399.      enum machine_mode mode;
  2400.      rtx *memrefloc;
  2401.      rtx ad;
  2402.      rtx *loc;
  2403.      rtx operand;
  2404. {
  2405.   register int regno;
  2406.   rtx tem;
  2407.  
  2408.   if (GET_CODE (ad) == REG)
  2409.     {
  2410.       regno = REGNO (ad);
  2411.  
  2412.       if (reg_equiv_constant[regno] != 0)
  2413.     {
  2414.       if (strict_memory_address_p (mode, reg_equiv_constant[regno]))
  2415.         {
  2416.           *loc = ad = reg_equiv_constant[regno];
  2417.           return 1;
  2418.         }
  2419.     }
  2420. #if 0 /* This might screw code in reload1.c to delete prior output-reload
  2421.      that feeds this insn.  */
  2422.       if (reg_equiv_mem[regno] != 0)
  2423.     {
  2424.       if (strict_memory_address_p (mode, reg_equiv_mem[regno]))
  2425.         {
  2426.           *loc = ad = reg_equiv_mem[regno];
  2427.           return 1;
  2428.         }
  2429.     }
  2430. #endif
  2431.       if (reg_equiv_address[regno] != 0)
  2432.     {
  2433.       rtx tem = make_memloc (ad, regno);
  2434.       push_reload (XEXP (tem, 0), 0, &XEXP (tem, 0), 0,
  2435.                BASE_REG_CLASS,
  2436.                GET_MODE (XEXP (tem, 0)), 0, VOIDmode, 0,
  2437.                operand);
  2438.       push_reload (tem, 0, loc, 0, BASE_REG_CLASS,
  2439.                GET_MODE (ad), 0, VOIDmode, 0,
  2440.                operand);
  2441.       return 1;
  2442.     }
  2443.       if (! (regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
  2444.          ? indirect_ok
  2445.          : REGNO_OK_FOR_BASE_P (regno)))
  2446.     {
  2447.       push_reload (ad, 0, loc, 0, BASE_REG_CLASS,
  2448.                GET_MODE (ad), 0, VOIDmode, 0, operand);
  2449.       return 1;
  2450.     }
  2451.       return 0;
  2452.     }
  2453.  
  2454.   if (strict_memory_address_p (mode, ad))
  2455.     {
  2456.       /* The address appears valid, so reloads are not needed.
  2457.      But the address may contain an eliminable register.
  2458.      This can happen because a machine with indirect addressing
  2459.      may consider a pseudo register by itself a valid address even when
  2460.      it has failed to get a hard reg.
  2461.      So do a tree-walk to find and eliminate all such regs.  */
  2462.  
  2463.       /* But first quickly dispose of a common case.  */
  2464.       if (GET_CODE (ad) == PLUS
  2465.       && GET_CODE (XEXP (ad, 1)) == CONST_INT
  2466.       && GET_CODE (XEXP (ad, 0)) == REG
  2467.       && reg_equiv_constant[REGNO (XEXP (ad, 0))] == 0)
  2468.     return 0;
  2469.  
  2470.       subst_reg_equivs_changed = 0;
  2471.       *loc = subst_reg_equivs (ad);
  2472.  
  2473.       if (! subst_reg_equivs_changed)
  2474.     return 0;
  2475.  
  2476.       /* Check result for validity after substitution.  */
  2477.       if (strict_memory_address_p (mode, ad))
  2478.     return 0;
  2479.     }
  2480.  
  2481.   /* If we have address of a stack slot but it's not valid
  2482.      (displacement is too large), compute the sum in a register.  */
  2483.   if (GET_CODE (ad) == PLUS
  2484.       && (XEXP (ad, 0) == frame_pointer_rtx
  2485. #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
  2486.       || XEXP (ad, 0) == arg_pointer_rtx
  2487. #endif
  2488.       )
  2489.       && GET_CODE (XEXP (ad, 1)) == CONST_INT)
  2490.     {
  2491.       /* Unshare the MEM rtx so we can safely alter it.  */
  2492.       if (memrefloc)
  2493.     {
  2494.       rtx oldref = *memrefloc;
  2495.       *memrefloc = copy_rtx (*memrefloc);
  2496.       loc = &XEXP (*memrefloc, 0);
  2497.       if (operand == oldref)
  2498.         operand = *memrefloc;
  2499.     }
  2500.       if (double_reg_address_ok)
  2501.     {
  2502.       /* Unshare the sum as well.  */
  2503.       *loc = ad = copy_rtx (ad);
  2504.       /* Reload the displacement into an index reg.
  2505.          We assume the frame pointer or arg pointer is a base reg.  */
  2506.       push_reload (XEXP (ad, 1), 0, &XEXP (ad, 1), 0, INDEX_REG_CLASS, 
  2507.                GET_MODE (ad), VOIDmode, 0, 0, operand);
  2508.     }
  2509.       else
  2510.     {
  2511.       /* If the sum of two regs is not necessarily valid,
  2512.          reload the sum into a base reg.
  2513.          That will at least work.  */
  2514.       push_reload (ad, 0, loc, 0, BASE_REG_CLASS,
  2515.                GET_MODE (ad), VOIDmode, 0, 0, operand);
  2516.     }
  2517.       return 1;
  2518.     }
  2519.  
  2520.   /* See if address becomes valid when an eliminable register
  2521.      in a sum is replaced.  */
  2522.  
  2523.   tem = ad;
  2524.   if (GET_CODE (ad) == PLUS)
  2525.     tem = subst_indexed_address (ad);
  2526.   if (tem != ad && strict_memory_address_p (mode, tem))
  2527.     {
  2528.       /* Ok, we win that way.  Replace any additional eliminable
  2529.      registers.  */
  2530.  
  2531.       subst_reg_equivs_changed = 0;
  2532.       tem = subst_reg_equivs (tem);
  2533.  
  2534.       /* Make sure that didn't make the address invalid again.  */
  2535.  
  2536.       if (! subst_reg_equivs_changed || strict_memory_address_p (mode, tem))
  2537.     {
  2538.       *loc = tem;
  2539.       return 0;
  2540.     }
  2541.     }
  2542.  
  2543.   /* If constants aren't valid addresses, reload the constant address
  2544.      into a register.  */
  2545.   if (CONSTANT_ADDRESS_P (ad) && ! strict_memory_address_p (mode, ad))
  2546.     {
  2547.       push_reload (ad, 0, loc, 0,
  2548.            BASE_REG_CLASS,
  2549.            Pmode, 0, VOIDmode, 0, operand);
  2550.       return 1;
  2551.     }
  2552.  
  2553.   return find_reloads_address_1 (ad, 0, loc, operand);
  2554. }
  2555.  
  2556. /* Find all pseudo regs appearing in AD
  2557.    that are eliminable in favor of equivalent values
  2558.    and do not have hard regs; replace them by their equivalents.  */
  2559.  
  2560. static rtx
  2561. subst_reg_equivs (ad)
  2562.      rtx ad;
  2563. {
  2564.   register RTX_CODE code = GET_CODE (ad);
  2565.   register int i;
  2566.   register char *fmt;
  2567.  
  2568.   switch (code)
  2569.     {
  2570.     case CONST_INT:
  2571.     case CONST:
  2572.     case CONST_DOUBLE:
  2573.     case SYMBOL_REF:
  2574.     case LABEL_REF:
  2575.     case PC:
  2576.     case CC0:
  2577.       return ad;
  2578.  
  2579.     case REG:
  2580.       {
  2581.     register int regno = REGNO (ad);
  2582.  
  2583.     if (reg_equiv_constant[regno] != 0)
  2584.       {
  2585.         subst_reg_equivs_changed = 1;
  2586.         return reg_equiv_constant[regno];
  2587.       }
  2588.       }
  2589.       return ad;
  2590.  
  2591.     case PLUS:
  2592.       /* Quickly dispose of a common case.  */
  2593.       if (XEXP (ad, 0) == frame_pointer_rtx
  2594.       && GET_CODE (XEXP (ad, 1)) == CONST_INT)
  2595.     return ad;
  2596.     }
  2597.  
  2598.   fmt = GET_RTX_FORMAT (code);
  2599.   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
  2600.     if (fmt[i] == 'e')
  2601.       XEXP (ad, i) = subst_reg_equivs (XEXP (ad, i));
  2602.   return ad;
  2603. }
  2604.  
  2605. /* If ADDR is a sum containing a pseudo register that should be
  2606.    replaced with a constant (from reg_equiv_constant),
  2607.    return the result of doing so, and also apply the associative
  2608.    law so that the result is more likely to be a valid address.
  2609.    (But it is not guaranteed to be one.)
  2610.  
  2611.    In all other cases, return ADDR.  */
  2612.  
  2613. static rtx
  2614. subst_indexed_address (addr)
  2615.      rtx addr;
  2616. {
  2617.   rtx const_part = 0;
  2618.   rtx var_part = 0;
  2619.   int regno;
  2620.  
  2621.   if (GET_CODE (addr) == PLUS)
  2622.     {
  2623.       if (CONSTANT_P (XEXP (addr, 0)))
  2624.     const_part = XEXP (addr, 0),
  2625.     var_part = XEXP (addr, 1);
  2626.       else if (CONSTANT_P (XEXP (addr, 1)))
  2627.     const_part = XEXP (addr, 1),
  2628.     var_part = XEXP (addr, 0);
  2629.       else
  2630.     var_part = addr;
  2631.  
  2632.       if (const_part && GET_CODE (const_part) == CONST)
  2633.     const_part = XEXP (const_part, 0);
  2634.  
  2635.       if (GET_CODE (var_part) == REG
  2636.       && (regno = REGNO (var_part)) >= FIRST_PSEUDO_REGISTER
  2637.       && reg_renumber[regno] < 0
  2638.       && reg_equiv_constant[regno] != 0)
  2639.     return (const_part
  2640.             ? gen_rtx (CONST, VOIDmode,
  2641.                gen_rtx (PLUS, Pmode, const_part,
  2642.                     reg_equiv_constant[regno]))
  2643.         : reg_equiv_constant[regno]);
  2644.  
  2645.       if (GET_CODE (var_part) != PLUS)
  2646.     return addr;
  2647.  
  2648.       if (GET_CODE (XEXP (var_part, 0)) == REG
  2649.       && (regno = REGNO (XEXP (var_part, 0))) >= FIRST_PSEUDO_REGISTER
  2650.       && reg_renumber[regno] < 0
  2651.       && reg_equiv_constant[regno] != 0)
  2652.     return gen_rtx (PLUS, Pmode, XEXP (var_part, 1),
  2653.             (const_part
  2654.              ? gen_rtx (CONST, VOIDmode,
  2655.                     gen_rtx (PLUS, Pmode, const_part,
  2656.                          reg_equiv_constant[regno]))
  2657.              : reg_equiv_constant[regno]));
  2658.  
  2659.       if (GET_CODE (XEXP (var_part, 1)) == REG
  2660.       && (regno = REGNO (XEXP (var_part, 1))) >= FIRST_PSEUDO_REGISTER
  2661.       && reg_renumber[regno] < 0
  2662.       && reg_equiv_constant[regno] != 0)
  2663.     return gen_rtx (PLUS, Pmode, XEXP (var_part, 0),
  2664.             (const_part
  2665.              ? gen_rtx (CONST, VOIDmode,
  2666.                     gen_rtx (PLUS, Pmode, const_part,
  2667.                          reg_equiv_constant[regno]))
  2668.              : reg_equiv_constant[regno]));
  2669.     }
  2670.   return addr;
  2671. }
  2672.  
  2673. /* Record the pseudo registers we must reload into hard registers
  2674.    in a subexpression of a would-be memory address, X.
  2675.    (This function is not called if the address we find is strictly valid.)
  2676.    CONTEXT = 1 means we are considering regs as index regs,
  2677.    = 0 means we are considering them as base regs.
  2678.  
  2679.    OPERAND is the operand of the insn within which this address appears.
  2680.  
  2681.    We return nonzero if X, as a whole, is reloaded or replaced.  */
  2682.  
  2683. /* Note that we take shortcuts assuming that no multi-reg machine mode
  2684.    occurs as part of an address.
  2685.    Also, this is not fully machine-customizable; it works for machines
  2686.    such as vaxes and 68000's and 32000's, but other possible machines
  2687.    could have addressing modes that this does not handle right.  */
  2688.  
  2689. static int
  2690. find_reloads_address_1 (x, context, loc, operand)
  2691.      rtx x;
  2692.      int context;
  2693.      rtx *loc;
  2694.      rtx operand;
  2695. {
  2696.   register RTX_CODE code = GET_CODE (x);
  2697.  
  2698.   if (code == PLUS)
  2699.     {
  2700.       register rtx op0 = XEXP (x, 0);
  2701.       register rtx op1 = XEXP (x, 1);
  2702.       register RTX_CODE code0 = GET_CODE (op0);
  2703.       register RTX_CODE code1 = GET_CODE (op1);
  2704.       if (code0 == MULT || code0 == SIGN_EXTEND || code1 == MEM)
  2705.     {
  2706.       find_reloads_address_1 (op0, 1, &XEXP (x, 0), operand);
  2707.       find_reloads_address_1 (op1, 0, &XEXP (x, 1), operand);
  2708.     }
  2709.       else if (code1 == MULT || code1 == SIGN_EXTEND || code0 == MEM)
  2710.     {
  2711.       find_reloads_address_1 (op0, 0, &XEXP (x, 0), operand);
  2712.       find_reloads_address_1 (op1, 1, &XEXP (x, 1), operand);
  2713.     }
  2714.       else if (code0 == CONST_INT || code0 == CONST
  2715.            || code0 == SYMBOL_REF || code0 == LABEL_REF)
  2716.     {
  2717.       find_reloads_address_1 (op1, 0, &XEXP (x, 1), operand);
  2718.     }
  2719.       else if (code1 == CONST_INT || code1 == CONST
  2720.            || code1 == SYMBOL_REF || code1 == LABEL_REF)
  2721.     {
  2722.       find_reloads_address_1 (op0, 0, &XEXP (x, 0), operand);
  2723.     }
  2724.       else if (code0 == REG && code1 == REG)
  2725.     {
  2726.       if (REG_OK_FOR_INDEX_P (op0)
  2727.           && REG_OK_FOR_BASE_P (op1))
  2728.         return 0;
  2729.       else if (REG_OK_FOR_INDEX_P (op1)
  2730.           && REG_OK_FOR_BASE_P (op0))
  2731.         return 0;
  2732.       else if (REG_OK_FOR_BASE_P (op1))
  2733.         find_reloads_address_1 (op0, 1, &XEXP (x, 0), operand);
  2734.       else if (REG_OK_FOR_BASE_P (op0))
  2735.         find_reloads_address_1 (op1, 1, &XEXP (x, 1), operand);
  2736.       else if (REG_OK_FOR_INDEX_P (op1))
  2737.         find_reloads_address_1 (op0, 0, &XEXP (x, 0), operand);
  2738.       else if (REG_OK_FOR_INDEX_P (op0))
  2739.         find_reloads_address_1 (op1, 0, &XEXP (x, 1), operand);
  2740.       else
  2741.         {
  2742.           find_reloads_address_1 (op0, 1, &XEXP (x, 0), operand);
  2743.           find_reloads_address_1 (op1, 0, &XEXP (x, 1), operand);
  2744.         }
  2745.     }
  2746.       else if (code0 == REG)
  2747.     {
  2748.       find_reloads_address_1 (op0, 1, &XEXP (x, 0), operand);
  2749.       find_reloads_address_1 (op1, 0, &XEXP (x, 1), operand);
  2750.     }
  2751.       else if (code1 == REG)
  2752.     {
  2753.       find_reloads_address_1 (op1, 1, &XEXP (x, 1), operand);
  2754.       find_reloads_address_1 (op0, 0, &XEXP (x, 0), operand);
  2755.     }
  2756.     }
  2757.   else if (code == POST_INC || code == POST_DEC
  2758.        || code == PRE_INC || code == PRE_DEC)
  2759.     {
  2760.       if (GET_CODE (XEXP (x, 0)) == REG)
  2761.     {
  2762.       register int regno = REGNO (XEXP (x, 0));
  2763.       int value = 0;
  2764.  
  2765.       /* A register that is incremented cannot be constant!  */
  2766.       if (regno >= FIRST_PSEUDO_REGISTER
  2767.           && reg_equiv_constant[regno] != 0)
  2768.         abort ();
  2769.  
  2770.       /* Handle a register that is equivalent to a memory location
  2771.          which cannot be addressed directly.  */
  2772.       if (reg_equiv_address[regno] != 0)
  2773.         {
  2774.           rtx tem = make_memloc (XEXP (x, 0), regno);
  2775.           /* First reload the memory location's address.  */
  2776.           push_reload (XEXP (tem, 0), 0, &XEXP (tem, 0), 0,
  2777.                BASE_REG_CLASS,
  2778.                GET_MODE (XEXP (tem, 0)), 0, VOIDmode, 0,
  2779.                operand);
  2780.           /* Put this inside a new increment-expression.  */
  2781.           x = gen_rtx (GET_CODE (x), GET_MODE (x), tem);
  2782.           /* Proceed to reload that, as if it contained a register.  */
  2783.         }
  2784.  
  2785.       /* If we have a hard register that is ok as an index,
  2786.          don't make a reload.  If an autoincrement of a nice register
  2787.          isn't "valid", it must be that no autoincrement is "valid".
  2788.          If that is true and something made an autoincrement anyway,
  2789.          this must be a special context where one is allowed.
  2790.          (For example, a "push" instruction.)
  2791.          We can't improve this address, so leave it alone.  */
  2792.  
  2793.       /* Otherwise, reload the autoincrement into a suitable hard reg
  2794.          and record how much to increment by.  */
  2795.  
  2796.       if (reg_renumber[regno] >= 0)
  2797.         regno = reg_renumber[regno];
  2798.       if ((regno >= FIRST_PSEUDO_REGISTER
  2799.            || !(context ? REGNO_OK_FOR_INDEX_P (regno)
  2800.             : REGNO_OK_FOR_BASE_P (regno))))
  2801.         {
  2802.           register rtx link;
  2803.  
  2804.           int reloadnum
  2805.         = push_reload (x, 0, loc, 0,
  2806.                    context ? INDEX_REG_CLASS : BASE_REG_CLASS,
  2807.                    GET_MODE (x), GET_MODE (x), VOIDmode, 0, operand);
  2808.           reload_inc[reloadnum]
  2809.         = find_inc_amount (PATTERN (this_insn), XEXP (x, 0));
  2810.  
  2811.           value = 1;
  2812.  
  2813.           /* Update the REG_INC notes.  */
  2814.  
  2815.           for (link = REG_NOTES (this_insn);
  2816.            link; link = XEXP (link, 1))
  2817.         if (REG_NOTE_KIND (link) == REG_INC
  2818.             && REGNO (XEXP (link, 0)) == REGNO (XEXP (x, 0)))
  2819.           push_replacement (&XEXP (link, 0), reloadnum, VOIDmode);
  2820.         }
  2821.       return value;
  2822.     }
  2823.     }
  2824.   else if (code == REG)
  2825.     {
  2826.       register int regno = REGNO (x);
  2827.  
  2828.       if (reg_equiv_constant[regno] != 0)
  2829.     {
  2830.       push_reload (reg_equiv_constant[regno], 0, loc, 0,
  2831.                context ? INDEX_REG_CLASS : BASE_REG_CLASS,
  2832.                GET_MODE (x), 0, VOIDmode, 0, operand);
  2833.       return 1;
  2834.     }
  2835.  
  2836. #if 0 /* This might screw code in reload1.c to delete prior output-reload
  2837.      that feeds this insn.  */
  2838.       if (reg_equiv_mem[regno] != 0)
  2839.     {
  2840.       push_reload (reg_equiv_mem[regno], 0, loc, 0,
  2841.                context ? INDEX_REG_CLASS : BASE_REG_CLASS,
  2842.                GET_MODE (x), 0, VOIDmode, 0, operand);
  2843.       return 1;
  2844.     }
  2845. #endif
  2846.       if (reg_equiv_address[regno] != 0)
  2847.     {
  2848.       x = make_memloc (x, regno);
  2849.       push_reload (XEXP (x, 0), 0, &XEXP (x, 0), 0,
  2850.                BASE_REG_CLASS,
  2851.                GET_MODE (XEXP (x, 0)), 0, VOIDmode, 0, operand);
  2852.     }
  2853.  
  2854.       if (reg_renumber[regno] >= 0)
  2855.     regno = reg_renumber[regno];
  2856.       if ((regno >= FIRST_PSEUDO_REGISTER
  2857.        || !(context ? REGNO_OK_FOR_INDEX_P (regno)
  2858.         : REGNO_OK_FOR_BASE_P (regno))))
  2859.     {
  2860.       push_reload (x, 0, loc, 0,
  2861.                context ? INDEX_REG_CLASS : BASE_REG_CLASS,
  2862.                GET_MODE (x), 0, VOIDmode, 0, operand);
  2863.       return 1;
  2864.     }
  2865.     }
  2866.   else
  2867.     {
  2868.       register char *fmt = GET_RTX_FORMAT (code);
  2869.       register int i;
  2870.       for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
  2871.     {
  2872.       if (fmt[i] == 'e')
  2873.         find_reloads_address_1 (XEXP (x, i), context, &XEXP (x, i), operand);
  2874.     }
  2875.     }
  2876.  
  2877.   return 0;
  2878. }
  2879.  
  2880. /* Substitute into X the registers into which we have reloaded
  2881.    the things that need reloading.  The array `replacements'
  2882.    says contains the locations of all pointers that must be changed
  2883.    and says what to replace them with.
  2884.  
  2885.    Return the rtx that X translates into; usually X, but modified.  */
  2886.  
  2887. void
  2888. subst_reloads ()
  2889. {
  2890.   register int i;
  2891.  
  2892.   for (i = 0; i < n_replacements; i++)
  2893.     {
  2894.       register struct replacement *r = &replacements[i];
  2895.       register rtx reloadreg = reload_reg_rtx[r->what];
  2896.       if (reloadreg)
  2897.     {
  2898.       /* Encapsulate RELOADREG so its machine mode matches what
  2899.          used to be there.  */
  2900.       if (GET_MODE (reloadreg) != r->mode && r->mode != VOIDmode)
  2901.         reloadreg = gen_rtx (SUBREG, r->mode, reloadreg, 0);
  2902.       *r->where = reloadreg;
  2903.     }
  2904.       /* If reload got no reg and isn't optional, something's wrong.  */
  2905.       else if (! reload_optional[r->what])
  2906.     abort ();
  2907.     }
  2908. }
  2909.  
  2910. #if 0
  2911.  
  2912. /* [[This function is currently obsolete, now that volatility
  2913.    is represented by a special bit `volatil' so VOLATILE is never used;
  2914.    and UNCHANGING has never been brought into use.]]
  2915.  
  2916.    Alter X by eliminating all VOLATILE and UNCHANGING expressions.
  2917.    Each of them is replaced by its operand.
  2918.    Thus, (PLUS (VOLATILE (MEM (REG 5))) (CONST_INT 4))
  2919.    becomes (PLUS (MEM (REG 5)) (CONST_INT 4)).
  2920.  
  2921.    If X is itself a VOLATILE expression,
  2922.    we return the expression that should replace it
  2923.    but we do not modify X.  */
  2924.  
  2925. static rtx
  2926. forget_volatility (x)
  2927.      register rtx x;
  2928. {
  2929.   enum rtx_code code = GET_CODE (x);
  2930.   register char *fmt;
  2931.   register int i;
  2932.   register rtx value = 0;
  2933.  
  2934.   switch (code)
  2935.     {
  2936.     case LABEL_REF:
  2937.     case SYMBOL_REF:
  2938.     case CONST_INT:
  2939.     case CONST_DOUBLE:
  2940.     case CONST:
  2941.     case REG:
  2942.     case CC0:
  2943.     case PC:
  2944.       return x;
  2945.  
  2946.     case VOLATILE:
  2947.     case UNCHANGING:
  2948.       return XEXP (x, 0);
  2949.     }
  2950.  
  2951.   fmt = GET_RTX_FORMAT (code);
  2952.   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
  2953.     {
  2954.       if (fmt[i] == 'e')
  2955.     XEXP (x, i) = forget_volatility (XEXP (x, i));
  2956.       if (fmt[i] == 'E')
  2957.     {
  2958.       register int j;
  2959.       for (j = XVECLEN (x, i) - 1; j >= 0; j--)
  2960.         XVECEXP (x, i, j) = forget_volatility (XVECEXP (x, i, j));
  2961.     }
  2962.     }
  2963.  
  2964.   return x;
  2965. }
  2966.  
  2967. #endif
  2968.  
  2969. /* Check the insns before INSN to see if there is a suitable register
  2970.    containing the same value as GOAL.
  2971.    If OTHER is -1, look for a register in class CLASS.
  2972.    Otherwise, just see if register number OTHER shares GOAL's value.
  2973.  
  2974.    Return an rtx for the register found, or zero if none is found.
  2975.  
  2976.    If RELOAD_REG_P is (short *)1,
  2977.    we reject any hard reg that appears in reload_reg_rtx
  2978.    because such a hard reg is also needed coming into this insn.
  2979.  
  2980.    If RELOAD_REG_P is any other nonzero value,
  2981.    it is a vector indexed by hard reg number
  2982.    and we reject any hard reg whose element in the vector is nonnegative
  2983.    as well as any that appears in reload_reg_rtx.
  2984.  
  2985.    If GOAL is zero, then GOALREG is a register number; we look
  2986.    for an equivalent for that register.
  2987.  
  2988.    MODE is the machine mode of the value we want an equivalence for.
  2989.    If GOAL is nonzero and not VOIDmode, then it must have mode MODE.
  2990.  
  2991.    This function is used by jump.c as well as in the reload pass.
  2992.  
  2993.    If GOAL is a PLUS, we assume it adds the stack pointer to a constant.  */
  2994.  
  2995. rtx
  2996. find_equiv_reg (goal, insn, class, other, reload_reg_p, goalreg, mode)
  2997.      register rtx goal;
  2998.      rtx insn;
  2999.      enum reg_class class;
  3000.      register int other;
  3001.      short *reload_reg_p;
  3002.      int goalreg;
  3003.      enum machine_mode mode;
  3004. {
  3005.   register rtx p = insn;
  3006.   rtx valtry, value, where;
  3007.   register rtx pat;
  3008.   register int regno = -1;
  3009.   int valueno;
  3010.   int goal_mem = 0;
  3011.   int goal_const = 0;
  3012.   int goal_mem_addr_varies = 0;
  3013.   int nregs;
  3014.   int valuenregs;
  3015.  
  3016.   if (goal == 0)
  3017.     regno = goalreg;
  3018.   else if (GET_CODE (goal) == REG)
  3019.     regno = REGNO (goal);
  3020.   else if (GET_CODE (goal) == MEM)
  3021.     {
  3022.       enum rtx_code code = GET_CODE (XEXP (goal, 0));
  3023.       if (MEM_VOLATILE_P (goal))
  3024.     return 0;
  3025.       if (flag_float_store
  3026.       && (GET_MODE (goal) == DFmode || GET_MODE (goal) == SFmode))
  3027.     return 0;
  3028.       /* An address with side effects must be reexecuted.  */
  3029.       switch (code)
  3030.     {
  3031.     case POST_INC:
  3032.     case PRE_INC:
  3033.     case POST_DEC:
  3034.     case PRE_DEC:
  3035.       return 0;
  3036.     }
  3037.       goal_mem = 1;
  3038.     }
  3039.   else if (CONSTANT_P (goal))
  3040.     goal_const = 1;
  3041.   else
  3042.     return 0;
  3043.  
  3044.   /* On some machines, certain regs must always be rejected
  3045.      because they don't behave the way ordinary registers do.  */
  3046.   
  3047. #ifdef OVERLAPPING_REGNO_P
  3048.    if (regno >= 0 && regno < FIRST_PSEUDO_REGISTER
  3049.        && OVERLAPPING_REGNO_P (regno))
  3050.      return 0;
  3051. #endif      
  3052.  
  3053.   /* Scan insns back from INSN, looking for one that copies
  3054.      a value into or out of GOAL.
  3055.      Stop and give up if we reach a label.  */
  3056.  
  3057.   while (1)
  3058.     {
  3059.       p = PREV_INSN (p);
  3060.       if (p == 0 || GET_CODE (p) == CODE_LABEL)
  3061.     return 0;
  3062.       if (GET_CODE (p) == INSN
  3063.       /* If we don't want spill regs (true for all calls in this file) */
  3064.       && (! (reload_reg_p != 0 && reload_reg_p != (short *)1)
  3065.       /* then ignore insns introduced by reload; they aren't useful
  3066.          and can cause results in reload_as_needed to be different
  3067.          from what they were when calculating the need for spills.
  3068.          If we notice an input-reload insn here, we will reject it below,
  3069.          but it might hide a usable equivalent.  That makes bad code.
  3070.          It may even abort: perhaps no reg was spilled for this insn
  3071.          because it was assumed we would find that equivalent.  */
  3072.           || INSN_UID (p) < reload_first_uid))
  3073.     {
  3074.       pat = PATTERN (p);
  3075.       /* First check for something that sets some reg equal to GOAL.  */
  3076.       if (GET_CODE (pat) == SET
  3077.           && ((regno >= 0
  3078.            && GET_CODE (SET_SRC (pat)) == REG
  3079.            && REGNO (SET_SRC (pat)) == regno
  3080.            && GET_CODE (valtry = SET_DEST (pat)) == REG)
  3081.           ||
  3082.           (regno >= 0
  3083.            && GET_CODE (SET_DEST (pat)) == REG
  3084.            && REGNO (SET_DEST (pat)) == regno
  3085.            && GET_CODE (valtry = SET_SRC (pat)) == REG)
  3086.           ||
  3087.           (goal_const && rtx_equal_p (SET_SRC (pat), goal)
  3088.            && GET_CODE (valtry = SET_DEST (pat)) == REG)
  3089.           || (goal_mem
  3090.               && GET_CODE (valtry = SET_DEST (pat)) == REG
  3091.               && rtx_renumbered_equal_p (goal, SET_SRC (pat)))
  3092.           || (goal_mem
  3093.               && GET_CODE (valtry = SET_SRC (pat)) == REG
  3094.               && rtx_renumbered_equal_p (goal, SET_DEST (pat)))))
  3095.         if (valueno = REGNO (valtry),
  3096.         other >= 0
  3097.         ? valueno == other
  3098.         : ((unsigned) valueno < FIRST_PSEUDO_REGISTER
  3099.            && TEST_HARD_REG_BIT (reg_class_contents[(int) class],
  3100.                      valueno)))
  3101.           {
  3102.         value = valtry;
  3103.         where = p;
  3104.         break;
  3105.           }
  3106.     }
  3107.     }
  3108.  
  3109.   /* We found a previous insn copying GOAL into a suitable other reg VALUE
  3110.      (or copying VALUE into GOAL, if GOAL is also a register).
  3111.      Now verify that VALUE is really valid.  */
  3112.  
  3113.   /* VALUENO is the register number of VALUE; a hard register.  */
  3114.  
  3115.   /* Don't find the sp as an equiv, since pushes that we don't notice
  3116.      would invalidate it.  */
  3117.   if (valueno == STACK_POINTER_REGNUM)
  3118.     return 0;
  3119.  
  3120.   /* Reject VALUE if the copy-insn moved the wrong sort of datum.  */
  3121.   if (GET_MODE (value) != mode)
  3122.     return 0;
  3123.  
  3124.   /* Reject VALUE if it was loaded from GOAL
  3125.      and is also a register that appears in the address of GOAL.  */
  3126.  
  3127.   if (goal_mem && value == SET_DEST (PATTERN (where))
  3128.       && refers_to_regno_p (valueno,
  3129.                 valueno + HARD_REGNO_NREGS (valueno, mode),
  3130.                 goal, 0))
  3131.     return 0;
  3132.  
  3133.   /* Reject VALUE if it is one of the regs reserved for reloads.
  3134.      Reload1 knows how to reuse them anyway, and it would get
  3135.      confused if we allocated one without its knowledge.
  3136.      (Now that insns introduced by reload are ignored above,
  3137.      this case shouldn't happen, but I'm not positive.)  */
  3138.  
  3139.   if (reload_reg_p != 0 && reload_reg_p != (short *)1
  3140.       && reload_reg_p[valueno] >= 0)
  3141.     return 0;
  3142.  
  3143.   /* On some machines, certain regs must always be rejected
  3144.      because they don't behave the way ordinary registers do.  */
  3145.   
  3146. #ifdef OVERLAPPING_REGNO_P
  3147.   if (OVERLAPPING_REGNO_P (valueno))
  3148.     return 0;
  3149. #endif      
  3150.  
  3151.   nregs = HARD_REGNO_NREGS (regno, mode);
  3152.   valuenregs = HARD_REGNO_NREGS (valueno, mode);
  3153.  
  3154.   /* Reject VALUE if it is a register being used for an input reload
  3155.      even if it is not one of those reserved.  */
  3156.  
  3157.   if (reload_reg_p != 0)
  3158.     {
  3159.       int i;
  3160.       for (i = 0; i < n_reloads; i++)
  3161.     if (reload_reg_rtx[i] != 0 && reload_in[i])
  3162.       {
  3163.         int regno1 = REGNO (reload_reg_rtx[i]);
  3164.         int nregs1 = HARD_REGNO_NREGS (regno1,
  3165.                        GET_MODE (reload_reg_rtx[i]));
  3166.         if (regno1 < valueno + valuenregs
  3167.         && regno1 + nregs1 > valueno)
  3168.           return 0;
  3169.       }
  3170.     }
  3171.  
  3172.   if (goal_mem)
  3173.     goal_mem_addr_varies = rtx_addr_varies_p (goal);
  3174.  
  3175.   /* Now verify that the values of GOAL and VALUE remain unaltered
  3176.      until INSN is reached.  */
  3177.  
  3178.   p = insn;
  3179.   while (1)
  3180.     {
  3181.       p = PREV_INSN (p);
  3182.       if (p == where)
  3183.     return value;
  3184.  
  3185.       /* Don't trust the conversion past a function call
  3186.      if either of the two is in a call-clobbered register, or memory.  */
  3187.       if (GET_CODE (p) == CALL_INSN
  3188.       && ((regno >= 0 && regno < FIRST_PSEUDO_REGISTER
  3189.            && call_used_regs[regno])
  3190.           ||
  3191.           (valueno >= 0 && valueno < FIRST_PSEUDO_REGISTER
  3192.            && call_used_regs[valueno])
  3193.           ||
  3194.           goal_mem))
  3195.     return 0;
  3196.  
  3197.       if (GET_CODE (p) == INSN || GET_CODE (p) == JUMP_INSN
  3198.       || GET_CODE (p) == CALL_INSN)
  3199.     {
  3200.       /* If this insn P stores in either GOAL or VALUE, return 0.
  3201.          If GOAL is a memory ref and this insn writes memory, return 0.
  3202.          If GOAL is a memory ref and its address is not constant,
  3203.          and this insn P changes a register, return 0.
  3204.          That is in lieue of checking whether GOAL uses this register.  */
  3205.  
  3206.       pat = PATTERN (p);
  3207.       if (GET_CODE (pat) == SET || GET_CODE (pat) == CLOBBER)
  3208.         {
  3209.           register rtx dest = SET_DEST (pat);
  3210.           while (GET_CODE (dest) == SUBREG
  3211.              || GET_CODE (dest) == ZERO_EXTRACT
  3212.              || GET_CODE (dest) == SIGN_EXTRACT
  3213.              || GET_CODE (dest) == STRICT_LOW_PART)
  3214.         dest = XEXP (dest, 0);
  3215.           if (GET_CODE (dest) == REG)
  3216.         {
  3217.           register int xregno = REGNO (dest);
  3218.           int xnregs;
  3219.           if (REGNO (dest) < FIRST_PSEUDO_REGISTER)
  3220.             xnregs = HARD_REGNO_NREGS (xregno, GET_MODE (dest));
  3221.           else
  3222.             xnregs = 1;
  3223.           if (xregno < regno + nregs && xregno + xnregs > regno)
  3224.             return 0;
  3225.           if (xregno < valueno + valuenregs
  3226.               && xregno + xnregs > valueno)
  3227.             return 0;
  3228.           if (goal_mem_addr_varies)
  3229.             return 0;
  3230.         }
  3231.           else if (goal_mem && GET_CODE (dest) == MEM
  3232.                && ! push_operand (dest, GET_MODE (dest)))
  3233.         return 0;
  3234.         }
  3235.       else if (GET_CODE (pat) == PARALLEL)
  3236.         {
  3237.           register int i;
  3238.           for (i = XVECLEN (pat, 0) - 1; i >= 0; i--)
  3239.         {
  3240.           register rtx v1 = XVECEXP (pat, 0, i);
  3241.           if (GET_CODE (v1) == SET || GET_CODE (v1) == CLOBBER)
  3242.             {
  3243.               register rtx dest = SET_DEST (v1);
  3244.               while (GET_CODE (dest) == SUBREG
  3245.                  || GET_CODE (dest) == ZERO_EXTRACT
  3246.                  || GET_CODE (dest) == SIGN_EXTRACT
  3247.                  || GET_CODE (dest) == STRICT_LOW_PART)
  3248.             dest = XEXP (dest, 0);
  3249.               if (GET_CODE (dest) == REG)
  3250.             {
  3251.               register int xregno = REGNO (dest);
  3252.               int xnregs;
  3253.               if (REGNO (dest) < FIRST_PSEUDO_REGISTER)
  3254.                 xnregs = HARD_REGNO_NREGS (xregno, GET_MODE (dest));
  3255.               else
  3256.                 xnregs = 1;
  3257.               if (xregno < regno + nregs
  3258.                   && xregno + xnregs > regno)
  3259.                 return 0;
  3260.               if (xregno < valueno + valuenregs
  3261.                   && xregno + xnregs > valueno)
  3262.                 return 0;
  3263.               if (goal_mem_addr_varies)
  3264.                 return 0;
  3265.             }
  3266.               else if (goal_mem && GET_CODE (dest) == MEM
  3267.                    && ! push_operand (dest, GET_MODE (dest)))
  3268.             return 0;
  3269.             }
  3270.         }
  3271.         }
  3272.       /* If this insn auto-increments or auto-decrements
  3273.          either regno or valueno, return 0 now.
  3274.          If GOAL is a memory ref and its address is not constant,
  3275.          and this insn P increments a register, return 0.
  3276.          That is in lieue of checking whether GOAL uses this register.  */
  3277.       {
  3278.         register rtx link;
  3279.  
  3280.         for (link = REG_NOTES (p); link; link = XEXP (link, 1))
  3281.           if (REG_NOTE_KIND (link) == REG_INC)
  3282.         {
  3283.           register int incno = REGNO (XEXP (link, 0));
  3284.           if (incno < regno + nregs && incno >= regno)
  3285.             return 0;
  3286.           if (incno < valueno + valuenregs && incno >= valueno)
  3287.             return 0;
  3288.           if (goal_mem_addr_varies)
  3289.             return 0;
  3290.         }
  3291.       }
  3292.     }
  3293.     }
  3294. }
  3295.  
  3296. /* Find a place where INCED appears in an increment or decrement operator
  3297.    within X, and return the amount INCED is incremented or decremented by.
  3298.    The value is always positive.  */
  3299.  
  3300. static int
  3301. find_inc_amount (x, inced)
  3302.      rtx x, inced;
  3303. {
  3304.   register enum rtx_code code = GET_CODE (x);
  3305.   register char *fmt;
  3306.   register int i;
  3307.  
  3308.   if (code == MEM)
  3309.     {
  3310.       register rtx addr = XEXP (x, 0);
  3311.       if ((GET_CODE (addr) == PRE_DEC
  3312.        || GET_CODE (addr) == POST_DEC
  3313.        || GET_CODE (addr) == PRE_INC
  3314.        || GET_CODE (addr) == POST_INC)
  3315.       && XEXP (addr, 0) == inced)
  3316.     return GET_MODE_SIZE (GET_MODE (x));
  3317.     }
  3318.  
  3319.   fmt = GET_RTX_FORMAT (code);
  3320.   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
  3321.     {
  3322.       if (fmt[i] == 'e')
  3323.     {
  3324.       register int tem = find_inc_amount (XEXP (x, i), inced);
  3325.       if (tem != 0)
  3326.         return tem;
  3327.     }
  3328.       if (fmt[i] == 'E')
  3329.     {
  3330.       register int j;
  3331.       for (j = XVECLEN (x, i) - 1; j >= 0; j--)
  3332.         {
  3333.           register int tem = find_inc_amount (XVECEXP (x, i, j), inced);
  3334.           if (tem != 0)
  3335.         return tem;
  3336.         }
  3337.     }
  3338.     }
  3339.  
  3340.   return 0;
  3341. }
  3342.